forked from BexB1/cyf-best-practices-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (54 loc) · 814 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
html, body {
margin: 1rem;
font-size: 16px;
}
.main-header {
width: 100%;
padding: 2rem;
color: #fff;
background-color: #222;
}
.main-footer {
width: 100%;
margin-top: 1rem;
padding: 2rem;
color: #fff;
background-color: #222;
}
.content {
width: 960px;
margin: 0 auto;
}
.menu li {
display: inline;
margin-right: 0.8rem;
}
.main-header h1 {
margin: 1rem 0;
}
.picture-title {
text-align: center;
}
.picture-title h2 {
margin: 1rem 0;
}
.links {
margin: 2rem;
text-align: center;
}
.wiki-link {
margin: 15px 5px;
padding: 15px;
color: #FFF;
background: #4787ed;
text-align: center;
border: 2px solid #4787ed;
}
.back-link {
margin: 15px 5px;
padding: 15px;
text-align: center;
color: #4787ed;
background: #FFF;
border: 2px solid #4787ed;
}