forked from gtan66/coding-for-designers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.css
115 lines (97 loc) · 1.5 KB
/
demo.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
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
109
110
111
112
113
114
115
html, body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
font-family: Helvetica, Arial;
font-size: 10pt;
}
#body {
height: 100%;
display: flex;
flex-direction: column;
}
.centered {
display: flex;
align-items: center;
justify-content: center;
}
.uppercase {
text-transform: uppercase;
letter-spacing: 2.5px;
font-weight: bold;
}
#header {
flex: 1;
}
#title {
display: flex;
align-items: center;
flex-direction: column;
}
#title .header {
font-size: 10pt;
letter-spacing: 2.5px;
letter-spacing: 2.5px;
padding-bottom: 10px;
}
#title .subheader {
font-size: 6pt;
}
#main-post {
flex: 2;
display: flex;
flex-direction: column-reverse;
background-color: #ececec;
}
#main-post-title {
height: 100px;
padding-left: 80px;
font-size: 14pt;
font-weight: bold;
}
#posts {
flex: 3;
display: flex;
flex-direction: column;
overflow: auto;
padding: 30px 50px;
}
.post {
border-top: 5px solid #4E92DF;
width: 100%;
}
.post-header {
font-size: 12pt;
font-weight: bold;
color: #4E92DF;
padding: 15px 0px;
}
#footer {
flex: 1;
background-color: black;
color: #FFB6C1;
display: flex;
flex-direction: column;
font-size: 6pt;
}
#footer div {
flex: 1;
align-content: center;
}
#social-media-icons {
align-items: center;
display: flex;
flex-direction: row;
width: 200px;
padding: 0px 50px;
border-bottom: 1px solid grey;
}
.icons {
flex: 1;
font-size: 8pt;
text-align: center;
}
#footer-message {
padding-top: 10px;
}