forked from akshitagupta15june/Moksh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reward.css
119 lines (103 loc) · 1.71 KB
/
reward.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
* {
box-sizing: border-box;
text-decoration: none;
}
body {
background-color: #2980b9;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
p {
color: rgb(0, 0, 0);
}
ol {
color: rgb(0, 0, 0);
}
.pomodoro-timer {
display: flex;
justify-content: center;
align-items: center;
}
.timer {
display: flex;
flex-direction: column;
align-items: center;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
padding: 10px;
background-color: white;
height: 3rem;
}
.time-left {
display: flex;
align-items: center;
font-size: 22px;
font-weight: bold;
margin-bottom: 25px;
}
.inline-text {
text-align: center;
margin: 0 10px;
font-family: 'Roboto', sans-serif;
}
.inline-image {
display: inline-block;
margin: 0 10px;
}
.pomodoro-text {
margin-top: 5rem;
margin-left: 2rem;
}
button {
font-size: 16px;
font-weight: bold;
color: white;
background-color: #2980b9;
border: none;
border-radius: 5px;
padding: 10px 30px;
margin: 5px;
margin-right: 10;
cursor: pointer;
}
.start {
border-radius: 10px;
}
.reset {
border-radius: 10px;
}
p a button {
font-size: 16px;
font-weight: bold;
color: white;
background-color: #2980b9;
border: none;
border-radius: 5px;
padding: 10px 30px;
margin: 5px;
margin-right: 10;
cursor: pointer;
}
div p a {
font-size: 20px;
font-weight: bold;
color: white;
color: rgb(81, 31, 31);
border: none;
border-radius: 5px;
margin: 5px 8px;
margin-bottom: 3rem;
cursor: pointer;
height: 2rem;
}
.list-paragraph {
font-family: 'Montserrat', sans-serif;
}
button:hover {
background: #3382F1;
color: black;
}
button:active {
background-color: #b71c1c;
}