-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (89 loc) · 1.72 KB
/
style.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
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
108
109
110
111
112
body {
background: powderblue;
text-align: center;
font-family: 'Open Sans', sans-serif;
}
.intro {
margin: 30px 0px;
font-weight: bold;
}
h1 {
color: royalblue;
text-transform: uppercase;
font-weight: 800;
}
p {
font-weight: 600;
}
#first {
margin-top: 10px;
color: goldenrod;
}
#second {
color: green;
}
#third {
color: #ff0800;
margin-bottom: 30px;
}
#enter {
border: none;
padding: 5px 15px;
border-radius: 5px;
color: #ffffff;
background-color: #025F70;
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: lightskyblue;
color: #000000;
}
ul {
text-align: left;
margin-top: 20px;
}
li {
list-style: none;
padding: 10px 20px;
color: #ffffff;
text-transform: capitalize;
font-weight: 600;
border: 2px solid #025f70;
border-radius: 5px;
margin-bottom: 10px;
background: #4eb9cd;
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: #76CFE0;
}
li > button {
font-weight: normal;
background: none;
border: none;
float: right;
color: #025f70;
font-weight: 800;
}
input {
border-radius: 5px;
min-width: 65%;
padding: 5px;
border: none;
}
.done {
background: #51DF70 !important;
color: #00891E;
}
.delete {
display: none;
}