-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.css
More file actions
105 lines (87 loc) · 1.83 KB
/
Copy pathstart.css
File metadata and controls
105 lines (87 loc) · 1.83 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.content, header, footer, .content .main {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.content {
justify-content: center;
align-items: stretch;
-webkit-flex-direction: column;
-moz-flex-direction: column;
flex-direction: column;
min-height: 100vh;
}
.content .main {
-webkit-flex: 1 1 auto;
-moz-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
justify-content: center;
align-items: center;
-webkit-flex-direction: column;
-moz-flex-direction: column;
flex-direction: column;
font-size: 1.2em;
}
header, footer {
-webkit-flex: 0 0 auto;
-moz-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
align-items: center;
-webkit-flex-direction: row;
-moz-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
flex-wrap: wrap;
box-shadow: 0px 0px 0.25em rgba(0,0,0, 0.75);
}
header {
justify-content: center;
color: var(--background-main);
background-color: var(--background-header);
}
header img, header div {
-webkit-flex: 0 1 auto;
-moz-flex: 0 1 auto;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
}
header a {
display: inline-block;
margin: 0px;
padding: 0px;
}
header img {
width: 35px;
height: 35px;
margin: 10px;
}
header div {
width: 55px;
height: 0px;
}
header h1 {
-webkit-flex: 1 1 auto;
-moz-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
margin: 10px;
text-align: center;
}
footer {
justify-content: space-around;
color: var(--background-main);
background-color: var(--background-footer);
font-size: 1.1em;
}
footer a {
display: inline-block;
color: inherit;
padding: 0.5em;
}
p {
padding: 0.5em;
}