-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (59 loc) · 1.04 KB
/
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
62
63
64
65
66
67
68
69
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
html {
background: #EEE;
font-family: 'Open Sans', sans-serif;
color: #222;
}
body {
width: 70%;
margin: auto;
border-radius: 15px;
padding: 10px;
background: #DDD;
}
h1 {
margin: 0;
padding: 10px;
font-size: 4em;
text-align: center;
background: #D44;
color: #EEE;
border-radius: 10px;
}
#container {
width: 80%;
margin: auto;
background: #DDD;
display: flex;
flex-wrap: wrap;
}
#container > a {
margin: 5px;
justify-content: space-around;
flex-grow: 1;
width: 25%;
text-decoration: none;
}
#container div {
border-radius: 10px;
height: 125px;
margin: 10px 0;
background: #575757;
padding: 10px;
}
#container div:hover {
color: #CCC;
}
#container h2
{
color: #EEE;
margin: auto;
font-size: 2em;
text-align: center;
text-decoration: underline;
}
footer h4{
border-top: 1px #bbb solid;
padding: 5px;
text-align: center;
}