forked from dreddsa5dies/goHackTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
116 lines (102 loc) · 2.1 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
@font-face {
font-family: "Consolas";
src: url("fonts/Consolas.ttf");
}
@font-face {
font-family: "Montserrat";
src: url("fonts/Montserrat-Regular.otf");
}
@font-face {
font-family: "Montserrat";
src: url("fonts/Montserrat-Bold.otf");
font-weight: 700;
}
@font-face {
font-family: "ProximaNova";
src: url("fonts/ProximaNovaRegular.otf");
}
@font-face {
font-family: "ProximaNova-Bold";
src: url("fonts/ProximaNovaBold.otf");
}
body {
font-family: "ProximaNova";
color: #111;
font-size: 100%;
width: 100%;
margin: 0;
overflow-x: hidden;
}
.wrapper {
position: absolute;
width: 100%;
min-height: 100%;
height: 100%;
display: table;
}
.content {
display: table-cell;
vertical-align: middle;
}
.inner {
margin: 0 auto;
width: 50em;
}
#name {
font-size: 5.000em;
color: #111;
font-family: "Montserrat";
text-align: center;
letter-spacing: 10;
text-transform: uppercase;
font-weight: 700;
}
ul {
text-align: center;
margin-top: 1em;
width: 37.500em;
margin-left: auto;
margin-right: auto;
}
li {
font-family: "Montserrat";
list-style-type: none;
color: #999;
font-size: 3.875em;
float: center;
margin: auto;
}
a {
color: #ccc;
text-decoration: none;
}
a:hover {
color: #999;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
body {
font-size: 120% !important;
}
div {
clear: both !important;
display: block !important;
width: 100% !important;
float: none !important;
margin: 0 !important;
padding: 0 !important;
}
#name {
margin-top: 0.5em !important;
}
ul {
margin-top: 12em !important;
}
li {
float: none !important;
font-size: 600% !important;
margin-bottom: 0.3em !important;
width: 80% !important;
margin-left: auto;
margin-right: auto;
}
}