-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (85 loc) · 1.57 KB
/
style.css
File metadata and controls
100 lines (85 loc) · 1.57 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
98
99
* {
width: 100%;
box-sizing: border-box;
margin: 0px;
font-family: 'Nunito', sans-serif;
}
body {
height: 100%;
background-size: cover;
}
.hidden {
display: none;
}
.displayWeather {
width: 200px;
height: 100%;
position: absolute;
top: 16px;
right: 5px;
display: flex;
flex-direction: column;
color: rgb(224, 224, 224);
}
#wicon {
inline-size: fit-content
}
.displayCenter {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-size: 30px;
color: rgb(224, 224, 224);
}
#focus {
padding: 10px;
border: 1px solid whitesmoke;
border-radius: 30px;
background-color: whitesmoke;
color: coral;
font-size: 25px
}
#clock, #timer {
font-size: 100px;
font-family: 'PT Sans', sans-serif;
color: rgb(224, 224, 224);
}
.timerInput {
width: 25%;
}
.inputName, .inputTodo {
height: 30px;
width: 60%;
background-color: transparent;
border: none;
border-bottom: 2px solid rgb(202, 202, 202);
color: rgb(224, 224, 224);
}
#todo-List {
position: static;
left: 50%;
top: 10%;
transform: translate(50%, 0%);
background-color: transparent;
width:50%;
}
li {
display: flex;
flex-direction: row;
}
button {
inline-size: fit-content;
border: none;
background-color: whitesmoke;
border-radius: 20px;
}
.displayQuotes {
position: absolute;
bottom: 10px;
display: flex;
flex-direction: column;
color: rgb(224, 224, 224);
text-align: center;
}