-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
152 lines (149 loc) Β· 2.81 KB
/
app.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
font-weight: 100;
padding: 20px 30px;
}
.min {
width: 500px;
min-width: 450px;
max-width: 650px;
padding: 20px 15px;
border: 1px solid rgb(0, 174, 255);
box-shadow: 1px 3px 4px #eee;
margin: 20px 0px 0px 0px;
border-radius: 5px;
margin: 5rem auto;
}
.add > #tdo {
width: 100%;
border: none;
padding: 13px 14px;
outline: none;
font-size: 18px;
border-bottom: 2px solid rgb(0, 174, 255);
box-shadow: 0px 4px 4px 2px #eee;
background-color: transparent;
border-radius: 10px;
border-top: 1px solid #eee;
}
.add {
width: 350px;
margin: 0 auto;
}
.add > button#add_btn {
width: 100%;
padding: 10px 5px;
margin: 20px 0px 0px 0px;
outline: none;
border: none;
background-color: rgb(0, 140, 255);
color: #fff;
border-radius: 10px 3px 10px;
font-size: 18px;
transition: box-shadow cubic-bezier(0.075, 0.82, 0.165, 1);
}
.todo_list {
width: 80%;
margin: 20px auto;
}
/* add box shadow using clicked */
.addShadow {
box-shadow: 3px 3px 4px 1px rgb(0 174 255) !important;
}
::placeholder {
text-transform: capitalize;
}
hr.top {
display: block;
margin: 20px auto;
height: 2px;
background-color: rgb(0 174 255);
outline: none;
border: none;
border-radius: 20px 20px 10px 5px;
}
h1.todoHeading {
font-family: Arial, Helvetica, sans-serif;
font-weight: normal;
color: rgb(0, 119, 255);
}
hr.heading {
border: none;
outline: none;
width: 90px;
height: 2px;
background-color: rgb(0, 89, 255);
margin: 0px 0px 20px 0px;
}
li.todoItem {
display: block;
border: 1px solid rgb(0, 119, 255);
padding: 10px 5px;
border-radius: 5px;
}
li.todoItem {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0px 0px 10px 0px;
box-sizing: border-box;
}
li.todoItem > div.subThing {
height: 100%;
}
li.todoItem > div.subThing > button {
height: 100%;
padding: 10px 10px;
border: none;
outline: none;
background-color: rgb(0, 140, 255);
color: #fff;
border-radius: 1px 2px 3px 5px;
font-size: 14px;
}
li.todoItem > span {
font-size: 18px;
text-transform: capitalize;
}
#del {
margin-left: 5px;
}
.red {
border: 1px solid red;
}
#tdo:focus {
box-shadow: 3px 3px 4px 1px rgb(0 174 255) !important;
}
.border {
border: 2px solid red;
}
span.input {
display: inline-block;
border: 2px solid #008cff;
outline: none;
min-width: 200px;
height: 100%;
padding: 10px 5px;
caret-color: black;
}
.heading:first-child{
width: max(200px,350px);
margin: 0 auto 20px auto;
text-align:center;
color: #fff;
border-radius: 5px;
padding: 1px 0px;
background: #008cff;
box-shadow: 0.1em 0.4rem 0px 0px #5746e6;
}
li.todoItem span{
display: block;
width: 200px;
overflow: auto;
height:max-content;
}