-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (91 loc) · 1.51 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: linear-gradient(
to right,
#d16ba5,
#c777b9,
#ba83ca,
#aa8fd8,
#9a9ae1,
#8aa7ec,
#79b3f4,
#69bff8,
#52cffe,
#41dfff,
#46eefa,
#5ffbf1
);
font-family: "Roboto", sans-serif;
}
#container {
display: flex;
flex-direction: column;
text-align: center;
margin: 80px auto;
padding: 20px;
justify-content: center;
align-items: center;
width: 750px;
min-height: 800px;
background-color: whitesmoke;
border-radius: 15px;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
input[type="text"],
select {
width: 350px;
padding: 12px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
input[type="button"],
select {
width: 350px;
padding: 12px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#adding_todo {
display: flex;
flex-direction: column;
}
h2 {
font-size: 40px;
padding-bottom: 10px;
}
li {
margin-top: 20px;
display: flex;
flex-direction: column;
font-size: 20px;
text-decoration: none;
cursor: pointer;
}
li:hover {
color: #ff4000;
text-decoration: line-through;
}
footer {
color: white;
bottom: 0;
width: 100%;
padding: 15px 0px;
text-align: center;
}
a {
color: white;
text-decoration: underline;
}
a:visited {
color: white;
text-decoration: underline;
}