-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (75 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (75 loc) · 1.55 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
.{
margin: 0;
padding: 0;
width: 0;
height: 0;
border: none;
box-sizing: border-box;
}
body{
background: #085078; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #85D8CE, #085078); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #85D8CE, #085078); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
min-height: 100%;
font-family: sans-serif;
}
.todo{
width: 459px;
height: 498px;
margin-left: 450px;
margin-top: 80px;
background-color: #fff;
border: 5px solid #000;
}
.header{
height: 50px;
font-size: 3rem;
border-color: red;
background-color: green;
text-align: center;
padding-bottom: 20px;
display: block;
border-bottom: 5px solid #000;
}
span{
margin-right: 20px;
color: #fff;
}
.desc{
margin-top: -29.56px;
height: 87%;
margin-left: -40px;
}
input[type="checkbox"]
{
position: relative;
top: 14px;
right: 20px;
float: right;
}
input[type="checkbox"]:checked+label
{
text-decoration: line-through;
color: #fff;
}
.list{
font-size: 29px;
list-style-type: none;
}
.list li{
float: left;
width: 100%;
}
label{
padding: 10px;
float: left;
width: 90%;
}
.dark-green{
background-color: #107476;
color: #fff;
}
.green{
background-color: hsl(89,43%,51%);
}
/*THANK YOU AND HAVE A NICE CODING JOURNEY*/