-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·78 lines (64 loc) · 1.07 KB
/
style.css
File metadata and controls
executable file
·78 lines (64 loc) · 1.07 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
* {
box-sizing: border-box;
word-wrap: break-word;
}
body {
background-color: #272727;
/*text-transform: lowercase;*/
}
h1 {
padding-left: 10px
}
p,a {
font-family: 'Fira Sans';
font-size: 18px;
}
header,h2,h3 {
color: #6381cb;
}
p {
color: #fafafa;
}
a {
color: #6381cb;
text-decoration: none;
}
header {
font-family: 'Ubuntu';
font-weight: 700;
padding: 0px 20px 0px 20px;
border-bottom: 3px solid #1144c0;
height: 75px;
box-sizing: border-box;
}
h2 {
font-family: 'Ubuntu';
font-weight: 500;
padding: 0px 0px 0px 10px;
border-left: 5px solid #1144c0;
}
h3 {
font-family: 'Ubuntu';
font-weight: 500;
padding: 0px 0px 0px 15px;
border-left: 5px solid #1144c0;
}
a[class^="contact-"] {
display: table;
font-size: 22px;
padding: 0px 10px 0px 10px;
border-left-width: 3px;
border-left-style: solid;
}
.contact-reddit {
border-left: 3px solid #ff0000;
color: #ff0000;
}
.contact-email {
border-left: 3px solid #ffff00;
color: #ffff00;
}
.contact-matrix {
border-left: 3px solid #ffffff;
color: #ffffff;
}