-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaderandfooter.css
More file actions
57 lines (56 loc) · 921 Bytes
/
headerandfooter.css
File metadata and controls
57 lines (56 loc) · 921 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
html,body
{
padding: 0;
margin: 0;
height: 100%;
}
#wrapper
{
min-height: 100%;
position: relative;
}
#header
{
height: 50px;
width: device-width; /* previous input width: 100% */
padding: 10px;
text-align: center;
background-color: #26a69a;
color: #fff;
font-size:relative;
}
#header>button
{
font-size:1.5vw; /* variable view-port size of font with font-size:1.2vw; */
}
#content
{
width: 100%;
color: #26a69a;
padding-top: 100px; /*100*/
padding-bottom: 70px; /*70*/
text-align: center;
}
#footer
{
height: 70px;
width: 100%;
padding-top: 10px;
background-color: #004d40;
color: #fff;
text-align: center;
position: absolute;
bottom: 0px;
}
button
{
background:green;border:2px;position:relative;border-radius:25%;align:center;width:device-width;
}
button:hover
{
background:skyblue;border:0px;position:relative;
}
div>#header:hover
{
font-family:lucidia;font-weight:bold;color:green;
}