forked from CharlesCarMichaelLutz/to-do
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (48 loc) · 857 Bytes
/
style.css
File metadata and controls
55 lines (48 loc) · 857 Bytes
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
body {
padding: 15px;
background-color: grey;
font-family: Georgia, 'Times New Roman', Times, serif;
color: darkgreen;
font-size: 35px;
text-align: center;
}
.hidden {
visibility: hidden;
}
.container {
flex-direction: column;
justify-content: center;
align-items: center;
background-color: grey;
font-size: large;
box-sizing: border-box;
display: flex;
}
.box {
flex-direction: column;
justify-content: center;
align-items: center;
font-size: x-large;
background-color: rgb(59, 147, 59);
width: 350px;
color: black;
}
ul {
list-style-type: none;
}
.myLine {
text-decoration: line-through;
text-decoration-color: blue;
}
.delete {
background-color: #0099ff;
font-size: 3px;
padding: 3px;
border-radius: 60%;
color: black;
float: right;
font-size: small;
}
.value {
font-size: x-large;
}