-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
124 lines (102 loc) · 2.07 KB
/
main.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@charset "UTF-8";
body {
font-family: 'Source Sans Pro', sans-serif;
background-color: #ffffff;
}
h1 {
}
h2 {
padding-top: 0.75rem;
}
h3 {
font-size: 1.5rem;
padding-top: 0.25rem;
}
h4 {
font-size: 1.25rem;
}
.nav, .nav-link {
padding-left: 0rem;
padding-top: 0.25rem;
padding-bottom: 0rem;
padding-right: 0.25rem;
}
.socials {
padding: 10px;
font-size: 20px;
width: 30px;
}
footer {
margin-bottom: 0rem;
width: 100%;
padding-bottom: 35px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.footer {
padding-top: 25px;
}
/* Style inputs */
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit] {
border: none;
cursor: pointer;
}
input[type=submit]:hover {
}
/* Create two columns that float next to eachother */
.column {
float: left;
width: 50%;
margin-top: 6px;
padding: 20px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.animate {
-webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 3s; /* Firefox < 16 */
-ms-animation: fadein 3s; /* Internet Explorer */
-o-animation: fadein 3s; /* Opera < 12.1 */
animation: fadein 3s;
-webkit-animation: fadeout 2s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadeout 2s; /* Firefox < 16 */
-ms-animation: fadeout 2s; /* Internet Explorer */
-o-animation: fadeout 2s; /* Opera < 12.1 */
animation: fadeout 2s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}