-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (49 loc) · 890 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
/* inside style.css */
.body {
text-align: center;
background-color: white;
font-family: Arial, Helvetica, sans-serif;
}
.main-block {
background-color: rgb(160, 160, 160);
margin: 40px;
padding: 20px;
border-radius: 50px;
}
.header {
background-color: rgb(15, 156, 156);
color: white;
padding: 30px;
width: 500px;
margin-left: auto;
margin-right: auto;
border-radius: 10px;
}
.quote {
margin-top: 30px;
}
.highlight {
background-color: rgb(212, 247, 86);
}
.error {
background-color: lightcoral;
border: red;
}
.input-start {
margin-top: 30px;
}
button {
background-color: rgb(15, 156, 156);
border: none;
border-radius: 5px;
width: 40px;
padding: 4px;
color: white;
transition: opacity 0.18s;
}
button:hover {
opacity: 0.7;
}
button:active {
opacity: 0.5;
}