-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (77 loc) · 1.49 KB
/
style.css
File metadata and controls
80 lines (77 loc) · 1.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html{
color: rgb(96, 101, 123);
}
body{
display:flex;
text-align:center;
justify-content:center;
background: white;
}
.container{
padding: 30px;
margin: 40px;
}
h2{
color: rgb(43, 45, 56);
text-align: center;
font-size: 48px;
letter-spacing: -.2px;
font-family: serif;
}
p{
max-width: 670px;
text-align: center;
margin-top: 24px;
margin-bottom: 100px;
}
textarea{
width: 100%;
height: 316px;
padding: 18px;
resize: none;
position: relative;
box-shadow: 0 12px 48px 0px rgba(128, 128, 128, 0.404);
border: .5px solid grey;
border-radius: 16px;
background-color: #fff;
}
textarea:focus{
border: .3px solid rgb(43, 45, 56, .3 );
outline: none;
}
p, textarea{
font-size: 18px;
letter-spacing: 1px ;
word-spacing: 2px;
line-height: 1.6;
}
button{
background-color: rgb(17,166,131);
color: white;
border-radius: 6px;
padding: 16px 32px ;
border: none;
font-size: 18px;
letter-spacing: 1px;
margin: auto;
display: flex;
position: relative;
margin-top: -80px;
cursor: pointer;
}
button:focus, button:hover{
background-color: rgb(42, 201,164);
box-shadow: 0 5px 30px 0 rgba(128, 128, 128, 0.162);
}
.counter-container{
display: flex;
justify-content: space-between;
margin-top: 30px;
padding: 0 10px 0 10px;
}