-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (54 loc) · 1007 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
51
52
53
54
55
56
57
58
59
60
61
62
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body,
.wrapper {
height: 100%;
margin: 0;
padding: 0;
font-family: "Istok Web", sans-serif;
text-align: center;
}
h1 {
text-align: center;
font-size: 50px;
}
div {
max-width: 1200px;
margin: 0 auto;
}
.text {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: none;
width: 100%;
padding: 10px;
border: 2px solid #c0c7cf;
border-radius: 6px;
resize: none;
overflow: hidden;
align-content: center;
}
.btn {
border: 2px solid rgba(150, 150, 150, 0.9);
background-color: rgba(95, 95, 95, 0.9);
border-radius: 25px;
padding: 15px;
color: hsl(0, 0%, 100%);
text-align: center;
}
#clearAll {
border: 2px solid rgba(169, 240, 236, 0.9);
background-color: rgba(117, 189, 236, 0.9);
margin: 0 auto;
justify-content: center;
width: 300px
}
.btn {
margin-left: -20px;
margin-right: -15px;
}