-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
81 lines (67 loc) · 1.33 KB
/
main.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
70
71
72
73
74
75
76
77
78
79
80
81
body {
margin: 0;
background-color: #FFFFFF;
}
.top {
width: 100%;
height: auto;
margin: 0 auto;
position: relative;
display: table-cell;
vertical-align: middle;
//width: 100vw;
}
.banner {
width: 100%;
}
.header {
z-index: 100;
padding: 5px;
margin: 0px;
border-top: 4px solid white;
border-bottom: 4px solid white;
width: 100%;
top: 50%;
box-sizing: border-box;
position: absolute;
//position: relative;
//transform: translateY(-50%);
font-family: Futura,Trebuchet MS,Arial,sans-serif;
//font-family: Arial Rounded MT Bold, Helvetica Rounded, Arial, sans-serif;
font-size: 300%;
background-color: rgba(255,255,255,0.5);
color: white;
}
.center {
width:calc(100% - 16px);
margin: 8px;
//box-sizing: border-box;
}
.content {
background-color: #FFFFFF;
border-left: 1px solid grey;
border-right: 1px solid grey;
font-size: 20px;
text-align: center;
color: #333333;
//display: table;
margin: 0 auto;
padding: 8px;
max-width: 768px;
width:100%;
box-sizing: border-box;
}
.footer {
//width: 100%;
//height: 75px;
background-color: #272727;
color: #CCCCCC;
font-family: Lucida Sans, monospace;
font-size: 14px;
left: 0px;
//overflow: hidden;
//border-radius: 0px;
margin: 0px;
padding: 5px;
display: block;
}