Website/css/staff.css

70 lines
1.4 KiB
CSS
Raw Normal View History

2016-08-28 00:37:20 +00:00
* {
margin: 0;
padding: 0;
}
2016-08-26 17:01:25 +00:00
body {
2016-08-28 00:37:20 +00:00
margin-bottom: 50px;
background: #222 url('../images/staff-bg.png') center fixed;
color: #ccc;
2016-08-26 17:42:24 +00:00
}
.nav-wrapper {
2016-08-28 00:37:20 +00:00
background: rgba(0, 0, 0, 0.2);
2016-08-26 17:42:24 +00:00
}
a {
2016-08-28 00:37:20 +00:00
color: rgb(200, 200, 200);
2016-08-26 17:42:24 +00:00
}
.admins {
2016-08-28 00:37:20 +00:00
width: 85%;
margin: 0 auto;
background: rgba(100, 100, 100, 0.1);
2016-09-24 14:58:24 +00:00
padding: 15px;
border-radius: 10px;
text-align: center;
2016-08-26 17:42:24 +00:00
}
.admins li {
2016-08-28 00:37:20 +00:00
display: inline-block;
padding: 10px;
background: rgba(100, 100, 100, 0.2);
margin: 5px;
border-radius: 50px;
2016-09-24 14:58:24 +00:00
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.admins li:hover {
background: rgba(100,100,100,0.5);
2016-08-26 17:42:24 +00:00
}
h2 {
2016-08-28 00:37:20 +00:00
font-size: 1.5em;
font-family: 'Catamaran', sans-serif;
2016-08-26 17:42:24 +00:00
}
#note {
2016-08-28 00:37:20 +00:00
text-align: center;
2016-08-26 17:42:24 +00:00
}
#note h5 {
2016-08-28 00:37:20 +00:00
margin-bottom: -15px;
2016-08-26 17:42:24 +00:00
}
2016-08-27 19:59:44 +00:00
#note a {
2016-08-28 00:37:20 +00:00
color: rgb(200, 200, 200);
font-weight: bold;
2016-08-27 19:59:44 +00:00
}
2016-08-26 17:42:24 +00:00
.rank {
2016-08-28 00:37:20 +00:00
text-align: center;
}
.page-title {
2016-08-28 00:37:20 +00:00
text-align: center;
font-size: 3.8em;
font-weight: 300;
}
.brand-logo {
2016-08-28 00:37:20 +00:00
font-family: 'Catamaran', sans-serif;
font-size: 2em;
font-weight: 200;
2016-10-02 13:07:06 +00:00
}
@media only screen and (max-width: 768px) {
.admins {
width: 100%;
2016-08-26 17:57:49 +00:00
}