mirror of
https://github.com/TotalFreedomMC/Website.git
synced 2024-12-22 16:25:12 +00:00
54 lines
1 KiB
SCSS
54 lines
1 KiB
SCSS
body {
|
|
background: #222 url('../images/conduct-bg.png') fixed no-repeat center center;
|
|
background-size: cover;
|
|
font-family: 'Roboto', sans-serif;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.brand-logo {
|
|
font-family: 'Raleway', sans-serif !important;
|
|
}
|
|
|
|
.content {
|
|
margin: 50px auto;
|
|
padding: 5px 15px 15px;
|
|
width: 90%;
|
|
color: #eee;
|
|
height: 100%;
|
|
background: rgba(#222,.6);
|
|
|
|
h1 {
|
|
margin-top: (15px / 2.9);
|
|
font-size: 1.3em;
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px solid #ccc;
|
|
padding: 0 0 10px;
|
|
}
|
|
|
|
h3 {
|
|
font-size:1.05em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
li {
|
|
padding: 5px;
|
|
}
|
|
.warning {
|
|
color: #F44336;
|
|
padding: 1px 10px;
|
|
border-left: 3px solid #F44336;
|
|
display: block;
|
|
}
|
|
|
|
a {
|
|
color: #bbb;
|
|
padding: 2px;
|
|
transition: all .3s ease-in-out;
|
|
border-bottom: 1px hidden #ccc;
|
|
&:hover {
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
}
|
|
}
|
|
|