-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_style.css
69 lines (66 loc) · 1.18 KB
/
index_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
@import url("https://fonts.googleapis.com/css2?family=Urbanist&display=swap");
:root {
font-size: 62.5%;
}
:root body {
background: #f0eeee;
color: #2c68b5;
font-family: "Urbanist", sans-serif;
}
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container__header {
margin-bottom: 2rem;
font-size: 5rem;
}
.container__input-label {
font-size: 2rem;
}
.container__input {
width: 22rem;
height: 4rem;
margin: 1rem;
padding: 1rem;
border: 1px solid #2c68b5;
border-radius: 2rem;
background: #f0eeee;
color: #2c68b5;
font-size: 1.8rem;
text-align: right;
}
.container__button {
width: 15rem;
height: 4rem;
margin-top: 1rem;
border: none;
border-radius: 1.8rem;
background: #2c68b5;
color: #f0eeee;
font-size: 2rem;
}
.container__button:hover {
background-color: #3e71b4;
}
.container__alert-message {
margin: 1rem;
color: #2c68b5;
font-size: 2rem;
text-align: center;
}
.container__alert-message--hidden {
color: transparent;
}
/*# sourceMappingURL=index_style.css.map */