-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (106 loc) · 2.35 KB
/
style.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
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,700');
* {
user-select: none;
font-weight: 300;
font-size: 16px;
font-family: 'Roboto', sans-serif;
letter-spacing: 1px;
}
html,
body {
min-height: 100%;
height: 100%;
background-color: #03396c;
position: relative;
}
main {
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
text-align: center;
}
footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 1rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
footer>div {
margin-right: 1rem;
}
h1 {
color: #b3cde0;
font-size: 5rem;
}
h2 {
color: #b3cde0;
font-size: 2rem;
}
a,
a:active,
a:visited {
outline: none;
color: transparent;
}
.name {
font-size: inherit;
font-weight: 700;
}
.item {
display: inline-block;
}
@font-face {
font-family: "Flaticon";
src: url("./fonts/Flaticon.eot");
src: url("./fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
url("./fonts/Flaticon.woff2") format("woff2"),
url("./fonts/Flaticon.woff") format("woff"),
url("./fonts/Flaticon.ttf") format("truetype"),
url("./fonts/Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url("./fonts/Flaticon.svg#Flaticon") format("svg");
}
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 20px;
font-style: normal;
color: #b3cde0;
}
.flaticon-linkedin:before {
content: "\f100";
}
.flaticon-github:before {
content: "\f101";
}
.flaticon-email:before {
content: "\f102";
}