-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (64 loc) · 1.17 KB
/
style.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
* {
margin: 0;
padding: 0;
}
.nav-box {
background-color: #333333;
display: flex;
flex-direction: row;
height: 58px;
}
.nav-box>a {
padding: 15px;
padding-left: 25px;
padding-right: 25px;
color: white;
text-decoration: none;
font-size: 24px;
}
.active {
background-color: #04AA6D !important;
}
.nav-box>a:hover {
background-color: #000;
}
.main-box {
display: flex;
height: calc(100vh - 58px);
justify-content: center;
align-items: center;
}
.arrow-box {
display: flex;
justify-content: center;
align-items: center;
height: 10vh;
font-size: 24px;
padding: 30px;
cursor: pointer;
}
.arrow-box:hover {
background-color: #e0e0e0;
}
.todo-box {
margin-left: 10px;
margin-right: 10px;
width: 700px;
font-size: 24px;
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
justify-content: center;
}
.todo-button {
margin-top: 10px;
height: 25px;
width: 25px;
background-color: rgb(250, 250, 250);
border: 1px solid black;
cursor: pointer;
}
.todo-button:hover {
background-color: rgb(235, 235, 235);
}