blob: b41e2fffdb65117ea85b44b40fac196a141bddbf (
plain)
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
|
* {
margin: 0;
padding: 0;
background: transparent;
}
p {
padding-top: 4px;
}
body {
font-family: Arial, Helvetica, sans-serif;
color: white;
background: black;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background: #202020;
padding: 30px;
text-align: center;
font-size: 30px;
}
#cool-div {
align-self: center;
width: 50vw;
}
section {
padding: 20px 10px 10px;
font-size: 20px;
}
footer {
background: #202020;
padding: 25px;
text-align: center;
font-size: 10px;
margin-top: auto;
}
#cool-butt {
background: white;
padding: 5px;
width: 100%;
font-size: 30px;
}
#git-butt {
background: lawngreen;
padding: 5px;
width: 80%;
font-size: 80px;
}
|