overseer/assets/styles/gargoyle.scss

136 lines
2.1 KiB
SCSS
Raw Normal View History

$primary-color: orangered;
2022-11-01 23:55:07 -04:00
$primary-color-highlight: darken($primary-color, 10%);
$box-shadow-1: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
$box-shadow-2: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
2022-11-01 23:55:07 -04:00
$nav-bar-height: 60px;
body{
padding: $nav-bar-height 0 0;
background: lightgrey;
}
a{
color: $primary-color;
transition: all 230ms ease-in-out;
&:hover{
color: $primary-color-highlight;
}
}
.button.button-primary,
button.button-primary,
input[type="button"].button-primary,
input[type="reset"].button-primary,
input[type="submit"].button-primary{
background-color: $primary-color;
color: white;
transition: all 230ms ease-in-out;
&:hover{
background-color: $primary-color-highlight;
}
}
2022-11-01 23:55:07 -04:00
.container.fluid{
2022-11-09 14:33:58 -05:00
width: calc(100% - 60px);
2022-11-01 23:55:07 -04:00
max-width: 100%;
2022-11-09 14:33:58 -05:00
margin-left: 30px;
margin-right: 30px;
2022-11-01 23:55:07 -04:00
}
#nav-bar{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: $nav-bar-height;
background: #212121;
box-shadow: $box-shadow-1;
2022-11-01 23:55:07 -04:00
color: white;
.nav-bar-left{
float: left;
}
2024-05-21 09:42:12 -04:00
.nav-bar-right{
float: right;
}
ul{
list-style: none;
li{
display: inline-block;
}
}
2022-11-01 23:55:07 -04:00
.site-logo,
.nav-link a{
padding: 10px 12px;
2022-11-01 23:55:07 -04:00
font-size: 2.5rem;
text-decoration: none;
2022-11-01 23:55:07 -04:00
}
.site-logo{
padding-left: 35px;
2022-11-01 23:55:07 -04:00
font-weight: bold;
}
2024-05-21 09:44:57 -04:00
#search-form{
display: inline-block;
padding: 10px 35px;
li{
display: inline-block;
}
2024-05-21 09:51:44 -04:00
button{
background: $primary-color;
border: 1px solid white;
color: white;
transition: all 200ms ease-in-out;
&:hover{
background: $primary-color-highlight;
color: #eee;
}
}
2024-05-21 09:44:57 -04:00
}
}
2022-11-02 13:45:40 -04:00
#main-content{
margin-top: 25px;
padding: 20px 32px;
2022-11-02 13:45:40 -04:00
background: white;
box-shadow: $box-shadow-2;
}
#record-actions{
p{
margin-bottom: 0;
font-size: 2rem;
}
}
2022-11-06 11:40:45 -05:00
#item-header,
#license-header{
margin-bottom: 25px;
2022-11-03 22:08:45 -04:00
h1,
p{
display: inline-block;
margin-bottom: 7px;
}
.item-added-date,
2022-11-06 11:40:45 -05:00
.item-updated-date,
.license-added-date,
.license-updated-date{
margin-bottom: 5px;
color: #666;
font-size: 1.6rem;
font-style: italic;
}
2022-11-02 13:45:40 -04:00
}