-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathstyle-final.css
More file actions
68 lines (56 loc) · 729 Bytes
/
style-final.css
File metadata and controls
68 lines (56 loc) · 729 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
60
61
62
63
64
65
66
67
68
body {
background-color: #000;
font-family: arial;
color: #ccc;
}
.main {
margin: 5rem;
border: 1px solid #ccc;
padding: 2em;
}
nav ul li {
display: inline;
list-style-type: none;
}
.cards div {
float:left;
}
.cards div:nth-child(odd){
background-color: #eee;
}
.cards div:nth-child(even){
background-color: #bbb;
}
.card {
margin: 2em;
padding: 2em;
border-radius: 5px;
}
.card h3 {
margin-top: 0;
}
.card > img {
height: 200px;
width: 150px;
}
.rules {
clear: both;
}
#logo {
width: 50%;
}
footer {
background-color: #F15323;
width: 100%;
/*
position: fixed;
top: 0px;
left: 0px;
z-index: -1;
*/
}
footer p {
padding: 20px;
font-style: italic;
color: #000;
}