easyctf-2017/web/css/style.css

115 lines
1.8 KiB
CSS
Raw Normal View History

@import url(https://fonts.googleapis.com/css?family=Exo+2);
h1 {
2015-12-28 00:23:59 +00:00
font-size: 75px;
}
2015-12-24 03:00:20 +00:00
::-webkit-input-placeholder {
2015-12-28 00:23:59 +00:00
color: #999999;
2015-12-24 03:00:20 +00:00
}
2015-12-28 00:23:59 +00:00
:-moz-placeholder {
/* Firefox 18- */
color: #999999;
2015-12-24 03:00:20 +00:00
}
2015-12-28 00:23:59 +00:00
::-moz-placeholder {
/* Firefox 19+ */
color: #999999;
2015-12-24 03:00:20 +00:00
}
:-ms-input-placeholder {
2015-12-28 00:23:59 +00:00
color: #999999;
2015-12-24 03:00:20 +00:00
}
2015-12-30 06:56:42 +00:00
#question-text {
height: 4em;
}
#question-title {
background-color:#D9EDF7;
text-align:center;
padding:0px 0px 0px 0px;
font-size:1.2em;
}
.intro {
2015-12-28 00:23:59 +00:00
text-align: center;
2015-12-24 16:49:08 +00:00
}
.column {
2015-12-28 00:23:59 +00:00
max-width: 450px;
2015-12-25 03:38:00 +00:00
}
body {
2015-12-28 00:23:59 +00:00
background-color: #F0F0F0;
2015-12-25 03:38:00 +00:00
}
.ui.menu .item img.logo {
2015-12-28 00:23:59 +00:00
margin-right: 1.5em;
2015-12-25 03:38:00 +00:00
}
.main.container {
2015-12-28 00:23:59 +00:00
margin-top: 7em;
2015-12-25 03:38:00 +00:00
}
.wireframe {
2015-12-28 00:23:59 +00:00
margin-top: 2em;
2015-12-25 03:38:00 +00:00
}
.ui.footer.segment {
2015-12-28 00:23:59 +00:00
margin: 5em 0em 0em;
padding: 5em 0em;
2015-12-26 06:36:55 +00:00
}
h1 {
2015-12-28 00:23:59 +00:00
color: #62AC5B;
font-family: "Exo 2";
}
h2 {
2015-12-28 00:23:59 +00:00
color: #226C1B;
2015-12-26 06:36:55 +00:00
}
li {
2015-12-28 00:23:59 +00:00
transition-duration: 0.5s;
2015-12-26 06:36:55 +00:00
}
li:hover {
2015-12-28 00:23:59 +00:00
background-color: #0066cc;
2015-12-26 06:36:55 +00:00
}
tr {
2015-12-28 00:23:59 +00:00
transition-duration: 0.5s;
2015-12-26 06:36:55 +00:00
}
tr:hover {
2015-12-28 00:23:59 +00:00
background-color: #DDDDDD;
2015-12-26 06:36:55 +00:00
}
li a, .navbar-brand {
2015-12-28 00:23:59 +00:00
color: white !important;
}
table {
2015-12-28 00:23:59 +00:00
color: #226C1B;
}
2015-12-30 06:56:42 +00:00
#imp-files {
2015-12-28 00:23:59 +00:00
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;
}
}
2015-12-27 04:50:52 +00:00
.fade_in {
2015-12-28 00:23:59 +00:00
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;
2015-12-27 04:50:52 +00:00
}