-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
executable file
·97 lines (82 loc) · 1.53 KB
/
custom.css
File metadata and controls
executable file
·97 lines (82 loc) · 1.53 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
/* Links */
a,
a:focus,
a:hover {
color: #fff;
}
/*
* Base structure
*/
html,
body {
height: 100%;
background-color: #333;
}
body {
color: #fff;
text-align: center;
text-shadow: 0 .05rem .1rem rgba(0,0,0,.5);
}
/* Padding for spacing */
.inner {
padding: 2rem;
}
html{
font-family: 'Nunito', sans-serif;
}
/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
background-image: url('images/blurcode.jpg');
display: table;
width: 100%;
height: 100%; /* For at least Firefox */
min-height: 100%;
-webkit-box-shadow: inset 0 0 5rem rgba(0,0,0,.5);
box-shadow: inset 0 0 5rem rgba(0,0,0,.5);
}
/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
color: #333;
text-shadow: none; /* Prevent inheritance from `body` */
background-color: #fff;
border: .05rem solid #fff;
}
#pagecontainer {
margin-top: 75px;
}
.verbose-content{
width: 80%;
min-width: min-content;
}
.solid-background{
background-color: #333;
}
.section-header {
padding-top: 60px;
margin-top: -60px;
}
.cover-page-block {
background-color: rgba(0,0,0,0.5);
padding: 30px 50px;
margin-top: 5px;
margin-bottom: 5px;
}
.headbar {
position: fixed;
top: 0;
width: 60%;
left: 20%;
}
input{
border-color: #666666;
background-color: #444444;
color: #ffffff;
}
textarea{
border-color: #666666;
background-color: #444444;
color:#dddddd;
margin-bottom: 2%;
}