forked from fl0zone/template-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (80 loc) · 1.38 KB
/
styles.css
File metadata and controls
97 lines (80 loc) · 1.38 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
* {
box-sizing: border-box;
}
html {
height: 100%;
display: block;
}
body {
margin: 0;
background-color: #0d0f10;
color: #fff;
font-family: 'Inter', sans-serif;
font-size: 18px;
color: #9b9ca1;
}
.flares {
z-index: 0;
width: 100%;
height: 100vh;
overflow: hidden;
background-image: linear-gradient(#010202,transparent);
position: absolute;
top: 0;
}
.flares img {
position: absolute;
top: 0%;
bottom: auto;
}
.flares .flares-top {
left: 0%;
right: 0%;
}
.flares .flares-right {
left: auto;
right: 0%;
}
.container {
display: flex;
position: relative;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
height: 100vh;
max-width: 1223px;
padding-left: 24px;
padding-right: 24px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.hero {
width: 100%
}
.logo {
width: 100%;
text-align: center;
margin-top: 60px
}
h1 {
width: auto;
font-size: 40px;
line-height: 48px;
font-weight: 600;
color: #fff
}
.hide-mobile {
display: none;
}
@media screen and (min-width: 991px) {
.hide-mobile {
display: block;
}
h1 {
margin-bottom: 24px;
font-size: 64px;
}
}