-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (39 loc) · 686 Bytes
/
style.css
File metadata and controls
46 lines (39 loc) · 686 Bytes
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
*,
:after,
:before {
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
margin: 0;
padding: 0;
font-family: "Nunito", sans-serif;
}
input {
transition: background-color 0.4s;
color: black;
border: 0;
border-radius: 20px;
padding: 12px 17px;
}
.main-border {
border-bottom: 1px solid rgb(219, 219, 219);
padding: 5px 0;
}
.main-border:last-child {
border: 0;
}
.daily-times {
color: rgb(128, 128, 128);
font-size: 13px;
font-weight: bold;
}
.text-notes :hover {
background-color: rgb(138, 215, 218);
}
.save-buttons {
background-color: rgb(233, 233, 233);
border-color: rgb(233, 233, 233);
color: #333;
}