-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (86 loc) · 1.4 KB
/
styles.css
File metadata and controls
112 lines (86 loc) · 1.4 KB
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
*
{
margin: 0;
padding: 0;
}
body
{
font-family: fantasy;
color: rgb(255, 255, 255);
font-size: 16px;
font-weight: 300;
overflow-x: hidden;
}
footer
{
background-color: black;
font-size: 1.2rem;
}
/* grid rules */
.row {
clear: both;
}
.limited
{
max-width: 1400px;
margin: auto;
}
.column {
float: left;
padding: 0;
margin: 0 0 0; /*0 0 .75rem 0*/
}
.small-12{
width: 100%;
}
.clearfix:after{
content: "";
display: table;
clear: both;
}
.navU
{
margin-right: auto;
margin-left: auto;
margin-top: 60px;
}
header img{
float: left;
height: 85px;
padding-right: 20px;
padding-top: 10px;
}
header h1, header h2 {
margin: 0;
color: white;
font-weight: 300;
font: italic;
}
header h1 {
float: left;
padding: 2rem 0 0 0;
font-size: 50px;
}
header h2 {
padding: .2rem 0 0 0;
font-size: 1.05rem;
}
.center
{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.skullBG
{
font-family: monospace;
background-image: url("skull.jpeg");
background-size: cover;
min-height: 100vh;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}