-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
46 lines (46 loc) · 967 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
* {
box-sizing: border-box;
text-align: center;
background: rgb(247, 187, 151);
}
html,body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.container {
width: 100%;
height: 70px;
padding: 20;
background: #eee;
line-height: 70px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 32px;
}
.content {
width: 100%;
height: 100%;
padding: 60px 20px;
background: rgba(238, 238, 238, 0.5);
}
.footer {
position: fixed;
width: 100%;
height: 70px;
padding: 20;
background: #eee;
line-height: 70px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 32px;
left: 0;
bottom: 0;
}
h2,h4 {
padding: 10px;
margin: 0 auto;
background: rgba(229, 255, 0, 0.692);
}
h2 {
margin-top: 30px;
}