-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (108 loc) · 2.03 KB
/
style.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
html{
scroll-behavior:smooth
}
body {
background: #101044;
color: white;
height: 100vh;
font-family: /*Safari for OS X and iOS (San Francisco)*/ -apple-system,
/*Chrome < 56 for OS X (San Francisco)*/ BlinkMacSystemFont,
/*Windows*/ "Segoe UI",
/*Android*/ "Roboto",
/*Basic web fallback */ "Helvetica Neue", Arial, sans-serif,
/*Emoji fonts*/ "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
overflow-x: hidden;
}
.page {
display: flex;
justify-content: center;
width: 100%;
min-height: 100%;
}
.content1 {
padding-top: 50px;
max-width: 700px;
position: relative;
}
#title-text {
display: inline-block;
font-weight: bold;
}
@media (max-width: 390px) {
#title-text {
min-width: 200px;
min-height: 70px;
}
}
h1 {
font-family: 'Caveat', cursive;
font-weight: 400;
margin: 0;
color: white;
font-size: 54px;
}
p {
font-weight: 300;
font-size: 20px;
color: white;
}
.text-button {
text-decoration: none;
font-weight: bold;
font-size: 26px;
}
.text-button:focus,
.text-button:hover {
text-decoration: underline;
outline: none;
}
.goto {
width: 100%;
font-size: 50px;
text-align: center;
}
.goto a {
display: inline-block;
text-decoration: none;
transform: translateY(0);
transition: 150ms ease;
}
.goto.goto-down a:focus,
.goto.goto-down a:hover {
transform: translateY(10px);
transition: 150ms ease;
}
.goto.goto-up a:focus,
.goto.goto-up a:hover {
transform: translateY(-10px);
transition: 150ms ease;
}
.content2 {
max-width: 900px;
position: relative;
margin-bottom: 50px;
}
.faq-grid {
display: grid;
grid-template-columns: repeat(1, 1fr);
grid-gap: 45px;
}
@media (min-width: 900px) {
.faq-grid {
width: 700px;
}
}
h2 {
font-size: 55px;
}
.faq-extended {
display: none;
font-size: 20px;
padding-left: 20px;
}
.faq.show .faq-extended {
display: block;
}
a {
color: white;
}