-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
96 lines (84 loc) · 1.69 KB
/
base.css
File metadata and controls
96 lines (84 loc) · 1.69 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
/*Basic styles that will apply to EVERY page*/
:root{
--bg-primary: #333;
--bg-dark: #222;
--bg-light: #444;
--bg-secondary: #777;
}
/*
* Base structure
*/
html,
body {
height: 100%;
margin: 0;
background-color: var(--bg-primary);
font-family: 'Nunito', sans-serif;
}
body {
color: #fff;
text-align: center;
text-shadow: 0 .05rem .1rem rgba(0,0,0,.5);
}
.site-wrapper {
background-image: url('images/blurcode.jpg');
-webkit-box-shadow: inset 0 0 5rem rgba(0,0,0,.5);
box-shadow: inset 0 0 5rem rgba(0,0,0,.5);
margin-top: 0;
width: 100%;
height: min-content;
min-height: 100%; /* For at least Firefox */
display: flex;
flex-flow: column;
}
/* buttons */
.btn {
display: inline-block;
font-weight: bold;
color: white;
padding: .75rem 1.25rem;
background-color: rgb(138, 138, 138);
text-decoration: none;
border-radius: 4px;
}
.btn:hover {
background-color: rgb(192, 192, 192);
}
/* */
.transparent-block{
background-color: rgba(0,0,0,0.5);
padding: 30px 50px;
margin-top: 5px;
margin-bottom: 5px;
}
.card{
background-color: var(--bg-dark);
border-radius: 4px;
padding: 10px;
margin-bottom: 5px;
}
.card-light{
background-color: var(--bg-secondary);
border-radius: 4px;
padding: 10px;
margin-bottom: 5px;
}
input{
background-color: #111;
border-color: var(--bg-primary);
color: #eee;
}
@media (min-width: 40em) {
/* Have some margin for page content */
.masthead {
margin-left: auto;
margin-right: auto;
width: 80%;
}
}
@media (min-width: 62em) {
.masthead,
.mastfoot{
width: 49rem;
}
}