-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (91 loc) · 1.58 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (91 loc) · 1.58 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
body{
background: gray;
text-align: center;
font-family: 'Open Sans', sans-serif;
}
.intro{
margin: 30px 0 px;
font-weight: bold;
}
h1{
color: #ffffff;
text-transform: uppercase;
font-weight: 800;
}
p{
font-weight: 600;
}
#first{
margin-top: 10px;
color: salmon;
}
#second{
color: #51DF70;
}
#third{
color: lightgray;
margin-bottom: 30px;
}
#enter{
border: none;
padding: 5px 15px;
border-radius: 5px;
color: lightgray;
background-color: lightgray;
transition: all 0.75s ease;
-webkit-transition: all 0.75s ease;
-moz-transition: all 0.75s ease;
-ms-transition: all 0.75s ease;
-o-transition: all 0.75 ease;
font-weight: normal;
}
#enter:hover{
background-color: lightsalmon;
color: salmon;
}
ul{
text-align: left;
margin-top: 20px;
}
li{
list-style: none;
padding: 10px 20px;
color: white;
text-transform: capitalize;
font-weight: 600;
font-size: 160%;
border: 2px solid lightgreen;
border-radius: 5px;
margin-bottom: 10px;
background: lightgray;
transition: all 0.75s ease;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5 ease;
}
li:hover{
background: lightslategray;
}
li > button{
font-weight: normal;
background: none;
border: none;
float: right;
color: salmon;
font-weight: 800;
}
input{
border-radius: 5px;
min-width: 65%;
padding: 5px;
border: none;
font-size: 150%;
}
.done{
background: #51DF70 !important;
color: #00891E;
}
.delete{
display: none;
}