-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (51 loc) · 847 Bytes
/
style.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
* {
margin: 0;
}
body {
width: 100%;
}
h1 {
background: black;
color: white;
text-align: center;
padding: 5px;
margin: 0px;
}
div.wrapper-nav, footer {
background: rgba(0, 0, 0, 0.8);
}
div.wrapper-nav {
height: 30px;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
padding: 5px 200px;
}
div.wrapper-nav p.nav {
color: darkgray;
font-size: 20px;
text-align: center;
vertical-align: middle;
}
div.wrapper-nav p.nav:hover {
color: white;
}
div.wrapper {
background: rgba(0, 0, 0, 0.5);
display: grid;
grid-template-columns: 3fr 1fr;
grid-gap: 5px;
padding: 5px;
}
div.wrapper div {
background: white;
padding: 3px;
}
p {
font-size: 14px;
margin-bottom: 10px;
}
footer {
color: white;
padding: 3px;
font-size: 10px;
}