2022-11-25 16:30:22 -05:00
|
|
|
$primary-color: navy;
|
|
|
|
$primary-color-highlight: lighten($primary-color, 10%);
|
|
|
|
|
|
|
|
$nav-height: 65px;
|
|
|
|
|
2024-04-06 12:08:23 -04:00
|
|
|
$textarea-min-height: 100px;
|
|
|
|
|
2022-11-25 16:30:22 -05:00
|
|
|
body{
|
|
|
|
margin: 0;
|
|
|
|
padding: $nav-height 0 0;
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
a{
|
|
|
|
color: $primary-color;
|
|
|
|
transition: all 230ms ease-in-out;
|
|
|
|
&:hover{
|
|
|
|
color: $primary-color-highlight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-06 12:08:23 -04:00
|
|
|
textarea{
|
|
|
|
min-width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
min-height: $textarea-min-height;
|
|
|
|
}
|
|
|
|
|
2022-11-25 16:30:22 -05:00
|
|
|
#main-nav{
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: $nav-height;
|
2023-07-05 13:52:15 -04:00
|
|
|
background: $primary-color;
|
2022-11-25 16:30:22 -05:00
|
|
|
color: #eee;
|
|
|
|
font-size: 2rem;
|
|
|
|
|
|
|
|
ul{
|
|
|
|
list-style: none;
|
|
|
|
li{
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-left{
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.nav-right{
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
a{
|
|
|
|
display: inline-block;
|
|
|
|
padding: 15px 10px;
|
|
|
|
color: #eee;
|
|
|
|
text-decoration: none;
|
|
|
|
&:hover{
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-logo{
|
|
|
|
margin-left: 25px;
|
|
|
|
margin-right: 25px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#main-wrapper{
|
|
|
|
max-width: 1180px;
|
|
|
|
margin-top: 15px;
|
|
|
|
padding: 15px 20px;
|
|
|
|
}
|
2024-06-03 08:38:28 -04:00
|
|
|
|
|
|
|
#benchmark-selector{
|
2024-06-03 08:39:50 -04:00
|
|
|
max-width: 100%;
|
|
|
|
min-height: 100px;
|
2024-06-03 08:38:28 -04:00
|
|
|
}
|
2024-06-03 10:50:53 -04:00
|
|
|
|
|
|
|
#result-form{
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
button,
|
|
|
|
input,
|
|
|
|
select{
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|