-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (60 loc) · 1.04 KB
/
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
63
64
65
66
67
/* Body background and font */
body {
background: #272343;
font-family: "Montserrat", cursive;
display: flex;
flex-direction: column;
align-items: center;
/* font-style: italic; */
}
P{
margin-top: 20px;
color: white;
}
/* Main heading */
.heading {
color: #bae8e8;
}
/* Countdown timer */
.timer {
color: #ffffff;
text-align: center;
width: 20rem;
height: 20rem;
border: 5px solid #fff;
border-radius: 10rem;
display: flex;
justify-content: center;
align-items: center;
}
.row {
width: 100%;
}
/* remove the padding on the play button */
.btn {
padding: 0;
}
/* play and reset icons */
.fa-play,
.fa-redo-alt {
color: #e3f6f5;
border: 2px solid transparent;
padding: 1rem;
border-radius: 2rem;
}
.fa-play:hover,
.fa-redo-alt:hover {
color: #bae8e8;
border: 2px solid #bae8e8;
transition: 0.3s ease;
}
/* Dynamic class */
/* Make the message visible */
.show_message {
display: block;
padding: 1rem 0;
color: #272343;
background: #e3f6f5;
border-radius: 0.5rem;
transition: 0.5s ease;
}