-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (46 loc) · 853 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
50
*{
padding: 0px;
box-sizing: border-box;
}
body{
height: 100vh;
background-color: rgb(221, 250, 215);
display: flex;
justify-content: center;
align-items: center;
font-family: cursive;
}
.container{
background-color: white;
height: 300px;
width: 500px;
padding: 10px;
border-radius: 10px;
box-shadow: 0 12px 15px rgba(0,0,0,0,5);
margin: 10px;
}
.textarea{
resize: none;
width: 100%;
height: 100px;
outline: none;
font-size: 18px;
padding: 8px;
border-radius: 10px;
border: 2px solid grey;
}
.counter{
display: flex;
justify-content: space-between;
padding: 0, 5px;
}
.counter p{
font-size: 20px;
color: grey;
}
.total-char{
color: blue;
}
.remaining-char{
color: red;
}