forked from projectlumos/testone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (52 loc) · 855 Bytes
/
style.css
File metadata and controls
53 lines (52 loc) · 855 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
.header{
margin: 25% 25% 25%;
text-align: center;
height: 100px;
font-size: 40px;
background-color: #424242;
border-radius: 20px 20px 0px 0px;
border: solid 3px ;
}
span{
color: white;
vertical-align: middle;
}
.main{
margin: 25% 25% 20% ;
background-color: #c0c0c0;
height: 400px;
text-align: center;
margin-top: -314px;
border-radius: 0px 0px 20px 20px;
border: solid 3px;
}
.list{
list-style: none;
margin-left: -40px;
}
a{
float: left;
font-size: 25px;
padding: 10px;
}
input[type="checkbox"]:checked+
a{
text-decoration: line-through;
color: #606060;
}
input[type="checkbox"]{
position:relative;
float: right;
top: 15px;
right: 10px
}
.list li{
float: left;
width: 100%;
}
.list li:nth-child(odd){
background:white ;
}
body{
background-image: radial-gradient( #c8d2df 20%, gray 100%);
}