-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (43 loc) · 933 Bytes
/
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
/* SIMPLE COMMON RESET FILE with some vars*/
:root {
--color-primary-light: #00F6AC;
--color-primary-dark: #0084F7;
}
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: inherit;
line-height: inherit;
color: inherit;
}
html {
text-rendering: optimizeSpeed;
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
background-image: linear-gradient(to right bottom, var(--color-primary-light), var(--color-primary-dark));
background-size: cover;
font-family: Arial, Helvetica, sans-serif;
min-height: 100vh;
}
/* SIMPLE COMMON RESET FILE */
.select__section {
display: flex;
gap: 2rem;
flex-direction: column;
align-items: center;
position: relative;
justify-content: center;
font-size: 2rem;
margin-top: 10%;
}
.select__language {
width: 33%;
align-self: center;
align-content: center;
}