-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (68 loc) · 1.18 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
70
71
72
73
74
75
76
77
78
79
html, body {
height: 90%;
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
max-width: 800px;
max-height: 1200px;
margin: auto;
}
.container {
display: flex;
flex-direction: column;
height: 90%;
max-width: 800px;
max-height: 1200px;
margin: auto;
}
.top-bar {
display: flex;
align-items: center;
background-color: #333;
color: white;
padding: 10px;
flex: 0 0 10%;
}
.top-bar img {
height: 40px;
margin-right: 20px;
margin-left: 28px;
}
.toolbar {
margin-left: auto;
}
.main {
display: flex;
padding: 20px;
flex: 0 0 65%;
}
.main .section {
flex: 1;
padding: 20px;
}
.footer {
background-color: #f1f1f1;
padding: 10px;
text-align: center;
flex: 0 0 15%;
display: flex;
align-items: center;
justify-content: center;
}
.footer .footer-content {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.footer p, .footer .social-links {
margin: 0;
}
.footer .social-links a {
margin: 0 10px;
display: inline-block;
}
.footer .social-links img {
height: 24px !important;
width: 24px !important;
}