-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
134 lines (116 loc) · 2.27 KB
/
style.css
File metadata and controls
134 lines (116 loc) · 2.27 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto+Mono&family=Advent+Pro:wght@400;700&display=swap');
.header {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 70px;
background-color: black;
z-index: 2;
display: flex;
align-items: center;
justify-content: stretch;
font-family: 'Open Sans', sans-serif;
color: #ccc;
}
.header-logo {
margin-left: 20px;
width: 35px;
}
.header-links {
text-align: right;
flex: 1 1 auto;
padding-right: 20px;
}
.header-links a[href] {
margin-right: 20px;
}
.bg-dropshadow {
position: fixed;
top: 70px;
left: 0;
width: 100vw;
height: calc(100vh - 70px);
background-color: #333333 !important;
box-shadow: 0px 40px 70px 20px rgb(0 0 0 / 50%) inset;
}
@media only screen and (max-width: 500px) {
.bg-dropshadow {
top: 50px;
height: calc(100vh - 50px);
}
}
.hero {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.hero-logo {
width: 150px;
}
.hero-title {
font-size: 65px;
font-family: 'Advent Pro', sans-serif;
color: whitesmoke;
position: relative;
}
.hero-title-beta {
font-size: 20px;
font-family: 'Advent Pro', sans-serif;
position: absolute;
top: -0px;
right: -10px;
color: orange;
}
.hero-code {
margin-top: 10px;
background-color: black;
padding: 8px 20px;
border-radius: 5px;
font-family: 'Roboto Mono', monospace;
font-size: 17px;
color: whitesmoke;
}
.hero-github {
margin-top: 20px;
margin-bottom: 40px;
}
.hero-text {
text-align: center;
margin-top: 10px;
padding: 0 10px;
max-width: 500px;
font-family: 'Open Sans', sans-serif;
color: #ccc;
}
a[href] {
text-decoration: none;
color: #eee;
cursor: pointer;
}
a[href]:hover {
text-decoration: none;
color: white;
}
a[href].hero-docs-button {
margin-top: 20px;
padding: 15px 30px;
text-decoration: none;
font-family: 'Open Sans', sans-serif;
border: 1px solid rgb(223,223,223);
color: rgb(17,17,17);
background-color: rgb(230,230,230);
border-radius: 4px;
line-height: 24px;
text-align: center;
font-size: 16px;
transition: 0.2s background-color ease-out;
}
a[href].hero-docs-button:hover {
background-color: rgb(255,255,255);
color: rgb(17,17,17);
}
.github-button {
display: none;
}