-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (43 loc) · 951 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
49
@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');
body{
margin: 0;
padding: 0;
box-sizing: border-box;
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #fbf2d2;
font-family: 'Gloock', serif;
}
.container{
background-color: #fcdda3;
width: 400px;
padding: 10px 2%;
margin: 5px;
border-radius: 10px;
border: 1px solid black;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
textarea{
resize: none;
width: 100%;
height: 100px;
padding: 10px;
border: 1px solid black;
font-family: serif;
font-size: 18px;
box-sizing: border-box;
background-color: #f1f1f2;
}
.counter-container{
display: flex;
justify-content: space-between;
}
.total-container {
color: green;
}
.remaining-container{
color: red;
}