-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
138 lines (120 loc) · 2.62 KB
/
index.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Poppins&family=Raleway&display=swap');
*{
box-sizing: border-box;
padding: 0;
margin: 0;
/* background-color: #d2dbdd;*/
font-family: 'Raleway';
}
.main_div{
width: 100%;
height: 100vh;
background: #06283D;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
}
.center_div
{
width: 25%;
height: 80vh;
background-color: #f4f4f4;
box-sizing: 5px 5px 25px -5px rgba(0,0,0,0.5);
border-radius: 15px;
}
h1{
color: white;
background: transparent;
/* text-shadow: 0 2px 2px black; */
background-color: #8566aa;
padding: 6px 0 2px 0;
margin-bottom: 10px;
box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.3);
}
input{
text-align: center;
height: 30px;
top: 10px;
border: none;
background: transparent;
font-size: 20px;font-weight: bold;
width: 60%;
padding: 20px;
border-bottom: 2px solid #8566aa;
outline: none;
}
button{
min-height: 40px;
width: 40px;
border-radius: 50%;
border-color: transparent;
background-color: #8566aa;
color: #fff;
font-size: 40px;
border: none;
outline: none;
margin-left: 10px;
box-shadow: 5px 5px 15px -5px rgba(0,0,0,0.3);
}
button:hover{
background-color: #20bf6b;
}
ol{
margin-top: 30px;
}
ol li{
padding-left: 0px;
text-align: left;
font-size: 20px;
font-weight: 500;
min-height: 40px;
display: flex;
align-items: center;
color: #8566aa;
text-transform: capitalize;
}
.todo_style{
display: flex;
flex-direction: row;
justify-content: left;
align-items: center;
}
.todo_style .fa-times{
width: 20px;
height: 20px;
display: flex;
justify-content: center;
align-items: center;
background-color: #8566aa;
border-radius: 50%;
margin: 0 15px 0 35px;
color: aliceblue;
box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.3);
}
.todo_style .fa-times:hover{
background-color: crimson;
}
.todo_style .fa-times:hover .list_style
{
color: crimson;
}
@media(max-width: 768px){
.center_div{
width: 55%;
}
.todo_style .fa-times{
margin: 0 15px 0 15px;
display: flex;
justify-content: center;
align-items: center;
}
button{
margin-left: 5px;
min-height: 40px;
width: 40px;
color: #fff;
font-size: 30px;
}
}