-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (92 loc) · 1.58 KB
/
Copy pathstyle.css
File metadata and controls
108 lines (92 loc) · 1.58 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
106
107
108
body {
font-family: 'Lato', sans-serif;
margin: 0px;
padding: 0px;
background-color: #95a5a6;
}
a {
color: #34495e;
}
.container {
display: flex;
flex-direction: column;
height: 100vh;
}
.header {
background-color: #34495e;
height: 150px;
display: flex;
justify-content: flex-start;
align-items: center;
flex-direction: column;
}
.header img {
padding-top: 25px;
}
.heading {
font-size: 2em;
color: white;
}
.subheading {
color: white;
}
.body {
background-color: #ecf0f1;
flex: 1;
display: flex;
justify-content: space-between;
flex-direction: column;
width: 80%;
position: relative;
top: -40px;
margin: auto;
padding: 10px;
overflow: scroll;
}
.body p {
margin: 0px;
}
.section p span {
font-weight: bold;
color: black;
}
.section p {
color: #34495e;
}
.section .text {
font-size: 1.5em;
text-align: center;
border: solid 1px #34495e;
width: 100%;
margin-top: 20px;
margin-bottom: 20px;
}
.section .community {
display: inline-block;
min-width: 30px;
min-height: 30px;
padding: 5px 30px 0px;
margin: 5px;
background-color: #95a5a6;
color: white !important;
}
.section .community a {
color: inherit;
text-decoration: none;
}
.section .community:hover {
background-color: #34495e;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
position: relative;
top: -30px;
margin: auto;
}
.footer span {
font-size: .8em;
color: white;
}