2015-12-27 03:30:44 +00:00
|
|
|
@import url(https://fonts.googleapis.com/css?family=Exo+2);
|
|
|
|
|
2015-12-24 01:15:13 +00:00
|
|
|
h1 {
|
2015-12-24 16:36:32 +00:00
|
|
|
font-size: 75px;
|
2015-12-24 01:15:13 +00:00
|
|
|
}
|
2015-12-24 03:00:20 +00:00
|
|
|
::-webkit-input-placeholder {
|
2015-12-25 03:38:00 +00:00
|
|
|
color: #999999;
|
2015-12-24 03:00:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
:-moz-placeholder { /* Firefox 18- */
|
2015-12-26 06:36:55 +00:00
|
|
|
color: #999999;
|
2015-12-24 03:00:20 +00:00
|
|
|
}
|
2015-12-24 01:15:13 +00:00
|
|
|
|
2015-12-24 03:00:20 +00:00
|
|
|
::-moz-placeholder { /* Firefox 19+ */
|
2015-12-26 06:36:55 +00:00
|
|
|
color: #999999;
|
2015-12-24 03:00:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
:-ms-input-placeholder {
|
2015-12-26 06:36:55 +00:00
|
|
|
color: #999999;
|
2015-12-24 03:00:20 +00:00
|
|
|
}
|
2015-12-24 01:15:13 +00:00
|
|
|
.intro {
|
2015-12-24 16:36:32 +00:00
|
|
|
text-align: center;
|
2015-12-24 16:49:08 +00:00
|
|
|
}
|
|
|
|
.column {
|
|
|
|
max-width: 450px;
|
2015-12-25 03:38:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2015-12-26 06:36:55 +00:00
|
|
|
}
|
|
|
|
h1 {
|
2015-12-27 03:30:44 +00:00
|
|
|
color: #62AC5B;
|
|
|
|
font-family: "Exo 2";
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
color: #226C1B;
|
2015-12-26 06:36:55 +00:00
|
|
|
}
|
|
|
|
li {
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
}
|
|
|
|
li:hover {
|
2015-12-27 03:30:44 +00:00
|
|
|
background-color: #0066cc;
|
2015-12-26 06:36:55 +00:00
|
|
|
}
|
|
|
|
tr {
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
}
|
|
|
|
tr:hover {
|
|
|
|
background-color: #DDDDDD;
|
|
|
|
}
|
2015-12-26 18:06:17 +00:00
|
|
|
li a, .navbar-brand {
|
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
table {
|
2015-12-27 03:30:44 +00:00
|
|
|
color: #226C1B;
|
2015-12-26 18:06:17 +00:00
|
|
|
}
|
2015-12-27 22:30:28 +00:00
|
|
|
#fileupload {
|
|
|
|
margin-right:auto;
|
|
|
|
padding-left:2em;
|
|
|
|
}
|
2015-12-27 04:50:52 +00:00
|
|
|
@-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;
|
|
|
|
}
|