-
Notifications
You must be signed in to change notification settings - Fork 0
/
your-styles.css
126 lines (107 loc) · 2.43 KB
/
your-styles.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
116
117
118
119
120
121
122
123
124
125
126
/*
* Your styles go here to build on Ghost.
* Example styling below to get ya started:
*/
/*
Fluid Scaling No longer included in Ghost due to possible issues.
Added to user-styles for live example site simplicity.
*/
main {
margin: calc(var(--ghost-font-sizing) + 120px) calc(var(--ghost-font-sizing)/4.25) calc(var(--ghost-font-sizing) + 120px) calc(var(--ghost-font-sizing)/4.25);
}
main * {
margin: var(--ghost-font-sizing) calc(var(--ghost-font-sizing)/4.25) calc(var(--ghost-font-sizing)*2.25) calc(var(--ghost-font-sizing)/4.25);
}
@media screen and (min-width: 324px) {
main {
margin: calc(var(--ghost-font-sizing) + 120px) calc(var(--ghost-font-sizing)/4.25) calc(var(--ghost-font-sizing) + 120px) calc(var(--ghost-font-sizing)/4.25);
}
main * {
margin: var(--ghost-font-sizing) calc(var(--ghost-font-sizing)/4.25) calc(var(--ghost-font-sizing)*2.25) calc(var(--ghost-font-sizing)/4.25);
}
}
#root {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container {
width: 100%;
max-width: 1024px;
flex: 1 0 auto;
}
.header {
top: 0;
left: 0;
right: 0;
position: fixed;
height: 60px;
min-width: 100vw;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 0 120px 0;
padding: 14px;
color: #fff;
background-color: #000;
z-index: 1001;
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav > ul {
display: flex;
justify-content: center;
align-items: center;
}
.nav > ul > li > a {
margin-left: 14px;
color: #fff;
}
.hero {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0;
}
.hero p {
text-align: center;
margin-top: 0;
}
.hero_logo {
margin: 0;
padding: 100px 0 160px 0;
font-size: 6rem;
font-weight: 800;
font-family: 'Fira Sans', "Inter", "Readex Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.footer {
bottom: 0;
left: 0;
right: 0;
min-width: 100vw;
height: 240px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-shrink: 0;
padding: 14px;
font-family: 'Fira Sans', "Inter", "Readex Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #fff;
background-color: #000;
}
.footer > h6 {
padding: 7px;
}
.footer > h6 > a {
color: #fff;
}
.footer_logo,
.footer_handle-logo {
font-weight: 800;
}