-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
78 lines (69 loc) · 933 Bytes
/
styles.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body{
background-color: rgb(48 49 51);
color:white;
}
header{
color:white;
text-align: left;
}
h2{
color:white;
text-align: left;
}
p{
color:white;
text-align: left;
}
figcaption{
color:white;
text-align: center;
}
footer{
color:white;
text-align: left;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
ol{
display: block;
color: white;
}
ul{
list-style: none;
margin: 0;
padding-left: 0;
font-size: 1.2em;
}
a{
color: red;
text-align: center;
}
nav{
float: right;
padding: 1.5em;
text-align: center;
}
#wrapper{
margin-left: auto;
margin-right: auto;
width: 80%;
min-width: 960px;
max-width: 2048px;
box-shadow: 3px 3px 3px #333333;
background-color: black;
border: 1px solid #000033;
}
section{
float: left;
width:33%;
padding-left: 2em;
padding-right: 2em;
}
table, tr, td, th {
border: green solid 2px;
border-collapse: collapse;
padding: 2px;
}