-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
117 lines (114 loc) · 2.1 KB
/
index.css
File metadata and controls
117 lines (114 loc) · 2.1 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
html {
height: 99%;
}
body {
height: 100%;
background-color: #fafafa;
}
.column-div {
height: 100%;
width: 800px;
margin: 0 auto;
display: flex;
align-items: center;
max-width: 800px;
}
.main-box {
width: 800px;
height: 600px;
display: flex;
flex-direction: column;
align-items: center;
border: 1px solid rgba(var(--b6a, 219, 219, 219), 1);
background-color: white;
}
form {
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 20px;
margin-top: 5px;
}
input {
width: 410px;
height: 38px;
border: 1px solid rgba(var(--b6a, 219, 219, 219), 1);
background-color: #fafafa;
margin-bottom: 20px;
}
.button {
width: 70px;
height: 42px;
border: 1px solid rgba(var(--b6a, 219, 219, 219), 1);
background-color: #0095f6;
color: white;
border-radius: 4px;
font-weight: bold;
margin-left: 8px;
}
.second-box {
width: 800px;
height: 100%;
display: flex;
}
.todo-list {
width: 440px;
height: 100%;
margin-left: 40px;
display: flex;
flex-direction: column;
align-items: center;
}
.to-do {
width: 100%;
height: 40px;
line-height: 30px;
margin-bottom: 10px;
display: flex;
border-bottom: 1px solid rgba(var(--b6a, 219, 219, 219), 1);
}
.num {
width: 30px;
height: 30px;
background-color: white;
border: 1px solid rgba(var(--b6a, 219, 219, 219), 1);
float: left;
text-align: center;
line-height: 30px;
color: #696969;
font-size: 15px;
border-radius: 50%;
margin-right: 20px;
}
.content {
width: 330px;
}
.to-do > button {
width: 20px;
height: 20px;
background-color: white;
/*border: 1px solid rgba(var(--b6a, 219, 219, 219), 1);*/
border: None;
text-align: center;
line-height: 30px;
color: #696969;
font-size: 17px;
margin-right: 5px;
font-weight: bold;
margin-top: 2.5px;
}
.time-table {
margin-left: 55px;
width: 230px;
height: 390px;
border-collapse: collapse;
font-size: 3px;
border: 1px solid rgba(var(--b6a, 219, 219, 219), 0.6);
color: rgba(var(--b6a, 120, 120, 120), 1);
}
th,
td {
border: 1px solid rgba(var(--b6a, 219, 219, 219), 0.6);
width: 32.8px;
text-align: center;
}