forked from madduccino/coding.space
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
59 lines (50 loc) · 854 Bytes
/
Copy pathabout.css
File metadata and controls
59 lines (50 loc) · 854 Bytes
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
html {
height: 100%;
}
body {
font-family: 'Quicksand', sans-serif;
background: linear-gradient(37deg, #8972DD, #293CAE);
background-repeat: no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-attachment: fixed;
}
h1 {
font-size: 2em;
font-weight: bold;
margin-bottom: 0;
}
h3 {
margin-top: 40px;
}
p {
margin-bottom: 20px;
margin-left: 40px;
}
.black-opaque {
background-color: rgba(0, 0, 0, 0.8);
color: white;
font-size: 1.4em;
padding: 8px;
border-radius: 4px;
padding-bottom: 50px;
}
.container {
margin-top: 40px;
}
.yellow {
color: #FFFFBF;
}
#header {
padding-bottom: 10px;
margin-bottom: 30px;
border-bottom: 1px solid #444;
display: flex;
justify-content: space-between;
align-items: flex-end;
}
#back {
font-size: 0.8em;
}