-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (67 loc) · 1.3 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
:root{
--font-family: "Montserrat", sans-serif;
--bg-color: #3C5B6F;
--primary-color: #F1F1F1;
}
body{
background-color: var(--bg-color);
color: var(--primary-color);
min-height: 100vh;
font-family: var(--font-family);
}
.lang{
display: flex;
justify-content: flex-end;
}
.lang,button{
margin: 0 10px 0 10px;
}
section{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
min-height: 100vh;
margin : 0;
}
h1{
font-size: 5em;
}
h3{
font-size: 2em;
margin-top: 20px;
}
.message{
font-size: 1.5em;
margin: 40px;
}
.box{
border: 2px solid var(--primary-color);
display: inline-block;
min-width: 1em;
min-height: 1em;
border-radius: 10px;
padding: 10px;
margin: 20px;
font-size: 4em;
}
button{
border: 1px solid var(--primary-color);
color: var(--primary-color);
font-family: var(--font-family);
background-color: transparent;
border-radius: 0.4em;
padding: 1em;
margin-top: 1.5em;
}
button:hover{
transition: 10ms;
background-color: #2b4150;
cursor: pointer;
}
.active{
background-color :#2b4150;
color: #dfdddd;
}