-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
45 lines (41 loc) · 823 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
body{
margin: 0;
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
background-color: rgb(180, 107, 12);
font-family: cursive;
font-size: 20px;
}
.container{
background-color: antiquewhite;
margin: 20px;
padding: 25px;
width: 400px;
text-align: center;
border-radius: 25px;
box-shadow: 0 5px 10px rgba(0,0,0,0.9);
}
.write{
resize: none;
width: 100%;
height: 100px;
font-size: 20px;
font-family: Georgia, 'Times New Roman', Times, serif;;
padding: 10px;
box-sizing: border-box;
border: solid 5px rgb(202, 96, 34);
border-radius: 20px;
}
.counter-container{
display: flex;
justify-content: space-between;
padding: 0 5px;
}
.totalcounter{
color: aqua;
}
.Remaining{
color:brown;
}