-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (49 loc) · 1.18 KB
/
style.css
File metadata and controls
55 lines (49 loc) · 1.18 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: linear-gradient(to right, #01c5ae, #ed56b5);
height: 100vh;
width: 100vw;
display: flex;
/* flex-direction: column; */
justify-content: center;
align-items: center;
}
.heading {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.container {
background-image: linear-gradient(to right, rgb(242, 112, 156), rgb(255, 148, 114));
width: 50vw;
height: 50vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
border-radius: 10px;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
textarea {
height: 70%;
width: 95%;
padding: 1.4rem;
font-size: 30px;
resize: none;
outline: none;
font-family: cursive;
border-radius: 5px;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.counter {
display: flex;
flex-direction: row;
font-family: cursive;
align-items: center;
justify-content: space-evenly;
}
.counter h3 {
margin: 0% 0.6rem;
}