-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
68 lines (62 loc) · 871 Bytes
/
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
body{
background-color: #2980B9;
}
h1{
font-size: 30px;
color: #5CCDC9;
position: relative;
left:50%;
}
ul{
display: inline-block;
text-align: left;
padding: 50px;
}
ul li{
margin: 10px;
font-size: 24px;
font-weight: 500;
color: #5CCDC9;
}
.text_field{
position: relative;
left:45%;
top: 60%;
}
.but{
position: relative;
top: 40%;
left:45%;
}
.conteiner{
display: flex;
flex-direction: column;
height: 100%;
width: 50%;
margin: 0 auto;
justify-content: center;
top: 50%;
}
.centred{
height: 60%;
display: flex;
flex-direction: column;
}
.conteiner .list{
flex: 1;
position: relative;
}
.conteiner .list ul{
position: absolute;
left: 0;
top: 70px;
right: 0;
bottom: 0;
overflow: auto;
}
.conteiner .list ul li:nth-child(2n+1){
background-color: #fff;
}
input[type="checkbox"]:checked + label {
text-decoration: line-through;
}