-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
191 lines (166 loc) · 3.56 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
body {
height:100%;
margin:0;
}
#container {
/*min-height: calc(100vh - 70px);*/
padding: 100px 50px 100px 100px;
-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 2s; /* Firefox < 16 */
-ms-animation: fadein 2s; /* Internet Explorer */
-o-animation: fadein 2s; /* Opera < 12.1 */
animation: fadein 2s;
}
#container-left {
/*min-height: calc(100vh - 70px);*/
padding: 0px 100px 75px 100px;
-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 2s; /* Firefox < 16 */
-ms-animation: fadein 2s; /* Internet Explorer */
-o-animation: fadein 2s; /* Opera < 12.1 */
animation: fadein 2s;
}
#pop {
color: #5075A5;
}
#name {
font-family:'Source Sans Pro', sans-serif;
font-size:550%;
margin:0px;
text-align:left;
padding:0px;
margin-bottom: -30px;
letter-spacing: 1px;
line-height: 90px;
padding-bottom: 15px;
}
#nav {
font-family:'Source Sans Pro', sans-serif;
color: black;
padding-bottom:-10px;
font-size:150%;
text-align:right;
padding: 0px 100px 0px 100px;
}
#greeting {
font-family:'Source Sans Pro', sans-serif;
color: black;
text-align:left;
padding-bottom:0px;
font-size:350%;
line-height: 100%;
}
.about {
font-family:'Source Sans Pro', serif;
font-weight: 300;
text-align:left;
font-size: 200%;
padding-top: 0px;
margin-top: 0px;
}
.talk {
margin-bottom: 20px;
}
.title {
font-family:'Source Sans Pro', serif;
font-weight: 400;
text-align: left;
font-size: 250%;
padding-top: 0px;
margin: 0px;
color: #5075A5;
}
.more {
font-family: 'Source Sans Pro', serif;
font-weight: 300;
text-align: left;
font-size: 200%;
padding: 0px;
margin: 0px;
}
@-webkit-keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
.link, a.link:visited {
color: black;
font-weight: 400;
text-decoration: none;
}
a.link:hover {
/*background-color: rgba(0,0,0,0.3);*/
text-decoration: underline;
}
.special-link, a.special-link:visited {
font-weight: 400;
text-decoration: none;
color: white;
border: 4px solid black;
background: black;
padding: 0px 6px 2px 6px;
border-radius: 5px;
}
a.special-link:hover {
/*background-color: rgba(0,0,0,0.3);*/
text-decoration: none;
background: #5075A5;
border: 4px solid #5075A5;
}
#social {
text-align:center;
font-size:150%;
}
.fa:link, .fa:visited {
color:black;
}
.text a:link, a:visited {
color:black;
}
@-webkit-keyframes hvr-icon-pulse-grow {
to {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
}
@keyframes hvr-icon-pulse-grow {
to {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
}
.fa:before {
content: "\f015";
position: absolute;
font-family: FontAwesome;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.fa:hover:before, .fa:focus:before, .fa:active:before {
-webkit-animation-name: hvr-icon-pulse-grow;
animatio hern-name: hvr-icon-pulse-grow;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
animation-direction: alternate;
}
i {
padding: 100px 75px 0px 0px;
color: black;
text-align: center;
}
/*scroll stuff*/
#text {
color: black;
/*overflow-y: scroll;*/
/*height: 400px;
width: 670px;*/
padding-right: 10px;
}