-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (81 loc) · 1.48 KB
/
style.css
File metadata and controls
97 lines (81 loc) · 1.48 KB
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
* {
/* border: 1px solid black; */
margin: 5px;
padding: 5px;
}
html {
background-color: white;
}
body {
font-family: Arial, sans-serif;
background-color: yellowgreen;
width: 90%;
justify-self: center;
border-radius: 10px;
}
.header {
background-color: darkgreen;
border-radius: 10px;
}
.pomodoroContainer {
justify-items: center;
background-color: orange;
border-radius: 10px;
}
.timerContainer {
justify-items: center;
background-color: tomato;
border-radius: 10px;
}
#focus:hover, #focus:focus, #break:hover, #break:focus {
background-color: darkred;
color: white;
cursor: pointer;
}
#timer {
font-size: 4rem;
text-decoration-style: solid;
color: white;
}
.taskContainer {
align-items: center;
justify-items: center;
background-color: whitesmoke;
border-radius: 10px;
}
.taskContainer h2 {
text-align: center;
justify-self: normal;
border-bottom: 3px double grey;
}
h1 {
color: white;
font-size: 3rem;
}
h3 {
color: white;
font-size: 1.5rem;
margin-bottom: 20px;
}
.buttonFeatures button {
padding: 10px 20px;
font-size: 1.2rem;
color: white;
background-color: grey;
border: none;
border-radius: 5px;
cursor: pointer;
}
.buttonFeatures button:hover {
background-color: darkgrey;
}
ul {
list-style-type: none;
}
li {
border: 1px solid black;
}
.footer {
background-color: lightpink;
border-radius: 10px;
}