-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
82 lines (81 loc) · 1.35 KB
/
popup.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 400px;
width: 400px;
font-family: "Poppins", sans-serif;
padding: 20px;
border-radius: 8px;
}
.extension_name {
color: #5e6680;
text-align: center;
}
.current_time_title {
color: #858a99;
font-size: 18px;
text-align: center;
margin-top: 20px;
}
#time {
font-size: 35px;
color: #5e6680;
text-align: center;
}
#name {
margin-top: 10px;
font-size: 20px;
color: #21b1eb;
text-align: center;
}
.welcome_title {
font-size: 20px;
font-weight: 600;
}
.username {
font-size: 16px;
font-weight: 700;
}
.timer_title {
margin-top: 10px;
font-size: 20px;
color: #5e6680;
text-align: center;
}
#timer {
font-size: 22px;
color: #3b4155;
text-align: center;
}
.btn_group {
margin-top: 20px;
display: flex;
align-items: center;
justify-content: center;
}
#start-btn,
#stop-btn,
#reset-btn {
text-align: center;
font-family: "Poppins", sans-serif;
text-transform: uppercase;
font-weight: 600;
border: none;
outline: none;
background: white;
width: 60px;
height: 30px;
cursor: pointer;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
border-radius: 15px;
}
.author {
margin-top: 16px;
font-size: 12px;
color: #b3b7c5;
text-align: center;
}