-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathto-do-list.css
73 lines (57 loc) · 927 Bytes
/
to-do-list.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
body {
background-color: rgb(250, 224, 224);
}
h1 {
text-align: center;
color: blue;
}
.menu {
display: flex;
justify-content: center;
}
.input_container {
display: flex;
flex-direction: column;
}
input[type="text"] {
border: blue solid 2px;
}
.addcat {
margin-bottom: 50px;
}
.span_container {
display: flex;
flex-direction: column;
}
span {
background-color: white;
width: fit-content;
border: 2px solid aquamarine;
}
table {
border-collapse: collapse;
margin-top: 100px;
margin: auto;
margin-top: 75px;
background-color: beige;
}
th {
border: orangered solid 3px;
width: 20vw;
}
/* td {
border: black 1px solid;
width: 25vw; */
}
.HETIC {
border: blue 2px solid;
}
.Maison {
border: blueviolet 2px solid;
}
.Atelier-Théâtre {
border: chartreuse 2px solid;
}
.Projet-Reyk {
border: cyan 2px solid;
}