-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.module.css
More file actions
127 lines (109 loc) · 1.96 KB
/
page.module.css
File metadata and controls
127 lines (109 loc) · 1.96 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
div.Container {
display: flex;
flex-direction: column;
justify-content: center;
}
div.Container_hasBackground_true {
background: var(--color-bg) url("/background.png") center no-repeat fixed;
background-size: contain;
}
main.Hero {
padding: 4em 3rem;
display: flex;
gap: 2rem;
flex-direction: column;
justify-content: center;
align-items: center;
color: var(--color-fg);
}
@media (min-width: 768px) {
main.Hero {
padding: 4em;
}
}
main.Hero h1 {
font-size: 2rem;
font-style: normal;
text-align: center;
text-decoration: none;
width: 125%;
font-family: var(--ubuntu);
margin: 0;
line-height: 1.1;
}
main.Hero h1 span {
color: var(--color-teal);
}
main.Hero h1 a:hover,
main.Hero h1 a:focus,
main.Hero h1 a:active {
text-decoration: underline;
}
main.Hero p {
text-align: center;
color: var(--color-fg-darkest);
margin: 0;
padding-bottom: 2rem;
}
main.Hero ul {
margin: 0;
display: flex;
flex-direction: column;
list-style: none;
padding: 0;
gap: 1rem;
}
main.Hero ul li a {
display: flex;
align-items: center;
font-size: large;
padding: 18px;
color: var(--color-fg);
border: 2px solid var(--color-grey);
border-radius: 4px;
font-weight: bold;
transition: 0.2s ease;
}
main.Hero ul li a:hover {
color: var(--color-teal);
background-color: var(--color-bg-dark);
transition: 0.2s ease;
}
main.Hero ul li a svg {
margin-right: 0.5rem;
}
@media (min-width: 380px) {
main.Hero ul {
flex-direction: row;
}
}
@media (min-width: 576px) {
main.Hero h1 {
font-size: 3rem;
}
}
@media (min-width: 768px) {
main.Hero h1 {
font-size: 4rem;
}
main.Hero p {
font-size: 1.5em;
}
div.Container_sideBar_true {
margin-left: 256px;
}
}
@media (min-width: 992px) {
main.Hero {
padding: 10em 12em 6em;
max-width: 1120px;
margin: 0 auto;
}
}
main.Hero p.Version {
font-size: 1rem;
color: var(--color-grey);
margin: 0;
padding: 0;
text-align: center;
}