This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<entityFramework> | |
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> | |
<parameters> | |
<parameter value="mssqllocaldb" /> | |
</parameters> | |
</defaultConnectionFactory> | |
<providers> | |
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> | |
</providers> | |
</entityFramework> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Bootstrap Example</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"> | |
<style> | |
/******************************* | |
* MODAL AS LEFT/RIGHT SIDEBAR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css?family=Roboto'); | |
body .gform_wrapper { font-size: 1.2em; font-family: 'Roboto', sans-serif; font-weight: 300; color: #333; line-height: 1.8; } | |
body .gform_wrapper .gform_body .gform_fields .gfield { margin-bottom: 30px; } | |
body .gform_wrapper .gform_body .gform_fields .gfield select, body .gform_wrapper .gform_body .gform_fields .gfield textarea, .gform_wrapper .gform_body .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) { display: block; height: calc(3rem + 2px); padding: .375rem .75rem; font-size: 1rem; line-height: 1.5; color: #495057; background-color: #fff; background-clip: padding-box; border: 1px solid #ced4da; border-radius: .25rem; transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; } | |
body .gform_wrapper .gform_body .gform_fields .gfield textarea { height: auto; } | |
body .gform_wrapper .gform_body .gform_fields .gfield label { margin: 0; padding: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<style> | |
.stacktable { width: 100%; } | |
.stacktable tr td, .stacktable tr th { border: 1px solid #dfdfdf; padding: 10px; } | |
.st-head-row { padding-top: 1em; } | |
.st-head-row.st-head-row-main { font-size: 1.5em; padding-top: 0; } | |
.st-key { width: 49%; text-align: right; padding-right: 1%; font-weight: bold; } | |
.st-val { width: 49%; padding-left: 1%; } |