-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
136 lines (115 loc) · 2.02 KB
/
stylesheet.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
/* Yah, I can't build websites for my life. Nothing to see here. */
body {
background-color: #262626;
}
::selection {
background:rgba(57, 60, 63, 0.99);
}
::-moz-selection {
background:rgba(57, 60, 63, 0.99);
}
h1 {
color: #E05F27;
font-weight : bold;
font-family: sans-serif;
}
h2 {
color: #2F7BDE;
font-family: sans-serif;
}
h3 {
color: #598249;
font-family: sans-serif;
}
h4, h5, h6, h7, li {
color: #909396;
font-family: sans-serif;
}
/* Simple colors here */
/*
h1, h2, h3, h4, h5, h6, h7, li {
color: #909396;
}
*/
/* Source code blocks */
pre {
background-color: #2B2B2C;
color: #909396;
border-color: black;
font-family: monospace;
}
p, th, td {
color: #909396;
font-family: sans-serif;
}
/* Tables (dammit bootstrap) */
.table {
background-color: #262626;
border-color: black;
}
.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
background-color: #2B2B2C;
}
.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
background-color: #363638;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
border-color: black;
}
/* links */
a:link, a:hover, a:active {
color: #d6372f;
}
a:visited {
color: #c02119;
}
/* footer */
footer {
height: auto;
/* Hack for txtpen, remove when ending testing */
background-color: #2B2B2C !important;
}
code {
background-color: #303030;
color: #909396;
}
/* Allow nav-box to stay while user scrolls */
.nav {
position: fixed;
}
.div-wrap {
display: inline-block;
width: 100%;
position: relative;
text-align: center;
}
.div-left {
position: relative;
width: auto;
float: left;
z-index: 1;
}
.div-right {
position: relative;
float:right;
z-index: 1;
}
.div-center {
float: left;
position: absolute;
width: 100%;
text-align: center;
}
/* to-do labels */
.label {
color: #000000;
}
/* .footer-cont{
padding-top:5px;
padding-bottom:5px;
} */