-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
63 lines (63 loc) · 964 Bytes
/
styles.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
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
}
html {
font-size: 62.5%;
}
body {
height: 100vh;
margin: 0 2rem;
display: grid;
place-items: center;
}
.main-container {
width: 100%;
padding: 3rem;
max-width: 60rem;
max-height: min-content;
border-radius: 1rem;
background-color: #edecf2;
}
.title {
margin-bottom: 2rem;
font-size: 3rem;
text-align: center;
}
.title::after {
content: "";
display: block;
border-bottom: 2px solid #dad7de;
margin-top: 0.5rem;
}
#user-input {
margin: 0;
padding: 1rem;
width: 100%;
height: 23rem;
resize: none;
border-radius: 0.5rem;
font-size: 1.5rem;
}
.result-container {
width: 100%;
margin-top: 1rem;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 1.5rem;
}
#btn-clear {
width: 10rem;
padding: 1rem;
color: #fff;
background-color: #e74042;
border: none;
}
#btn-clear:hover {
cursor: pointer;
}