easyctf-2017/web/css/style.css
2015-12-30 00:56:42 -06:00

115 lines
1.8 KiB
CSS

@import url(https://fonts.googleapis.com/css?family=Exo+2);
h1 {
font-size: 75px;
}
::-webkit-input-placeholder {
color: #999999;
}
:-moz-placeholder {
/* Firefox 18- */
color: #999999;
}
::-moz-placeholder {
/* Firefox 19+ */
color: #999999;
}
:-ms-input-placeholder {
color: #999999;
}
#question-text {
height: 4em;
}
#question-title {
background-color:#D9EDF7;
text-align:center;
padding:0px 0px 0px 0px;
font-size:1.2em;
}
.intro {
text-align: center;
}
.column {
max-width: 450px;
}
body {
background-color: #F0F0F0;
}
.ui.menu .item img.logo {
margin-right: 1.5em;
}
.main.container {
margin-top: 7em;
}
.wireframe {
margin-top: 2em;
}
.ui.footer.segment {
margin: 5em 0em 0em;
padding: 5em 0em;
}
h1 {
color: #62AC5B;
font-family: "Exo 2";
}
h2 {
color: #226C1B;
}
li {
transition-duration: 0.5s;
}
li:hover {
background-color: #0066cc;
}
tr {
transition-duration: 0.5s;
}
tr:hover {
background-color: #DDDDDD;
}
li a, .navbar-brand {
color: white !important;
}
table {
color: #226C1B;
}
#imp-files {
margin-right: auto;
padding-left: 2em;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fade_in {
opacity: 0;
-webkit-animation: fadeIn ease-in-out 1;
-moz-animation: fadeIn ease-in-out 1;
animation: fadeIn ease-in-out 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
animation-duration: 1s;
}