-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
56 lines (49 loc) · 971 Bytes
/
styles.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
body {
background: #FDEEDC;
font-family: "Courier New", monospace;
border: 10px solid #E38B29;
}
.heading {
color: #E38B29;
}
.timer {
color: #F1A661;
text-align: center;
width: 20rem;
height: 20rem;
border: 8px solid #F1A661;
border-radius: 10rem;
display: flex;
justify-content: center;
align-items: center;
}
.row {
width: 100%;
}
/* remove the padding on the play button */
.btn {
padding: 0;
}
.fa-play,
.fa-redo-alt {
color: #E38B29;
border: 2px solid transparent;
padding: 1rem;
border-radius: 2rem;
}
.fa-play:hover,
.fa-redo-alt:hover {
color: #F1A661;
border: 2px solid #FFD8A9;
transition: 0.3s ease;
}
/* Dynamic class */
/* Make the message visible */
.show_message {
display: block;
padding: 1rem 0;
color: #4c4480;
background: #e3f6f5;
border-radius: 0.5rem;
transition: 0.5s ease;
}