-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
129 lines (109 loc) · 1.92 KB
/
index.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
120
121
122
123
124
125
126
127
128
129
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
body {
background-color: rgb(0, 0, 0);
min-width: 700px;
}
h1 {
color: white;
margin: 0;
}
#header {
display: flex;
justify-content: space-around;
align-items: center;
min-width: 500px;
height: 10vh;
background-color: rgb(0, 0, 0);
}
img {
height: 70%;
}
#main {
display: flex;
}
.container {
padding: 1em;
width: 73vw;
background-color: rgb(0, 0, 0);
order: 1;
}
#aside {
width: 25vw;
min-height: 90vh;
background-color: rgb(33, 35, 35);
border-radius: .5em;
}
.statusBar {
display: flex;
justify-content: space-evenly;
background-color: rgb(135, 135, 135);
border-radius: .5em;
text-align: center;
}
.task {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgb(135, 135, 135);
margin: .5em 0;
padding: .7em 1em;
border-radius: .5em;
}
input {
background-color: rgb(255, 255, 255);
min-width: 20%;
max-width: 90%;
border: none;
border-radius: .5em;
text-align: center;
margin: 1em;
font-size: .9rem;
}
.number {
font-size: 2em;
}
.box {
padding: .6em;
display: flex;
flex-direction: column;
align-items: center;
}
.footer {
margin: 1em;
display: flex;
justify-content: right;
}
.buttonArea {
display: flex;
margin: 1em;
justify-content: space-between;
}
.tabs {
color: white;
display: flex;
justify-content: space-around;
margin-top: 1em;
}
.tab {
padding: 0 2em;
padding-top: .5em;
border-top-left-radius: .5em;
border-top-right-radius: .5em;
}
.selected {
background-color: rgb(33, 35, 35);
}
.list {
border-radius: .5em;
background-color: rgb(33, 35, 35);
padding: 1em;
}
button {
border-radius: .5em;
padding: .5em .7em;
}