-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
172 lines (161 loc) · 3 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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
*{
margin: 0%;
padding: 0%;
/* font-family: 'Srisakdi', cursive; */
font-weight: 500;
}
body{
background: url("./assets/back-2.jpg");
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
width: 100vw;
display: flex;
justify-content: space-between;
align-items: center ;
flex-direction: column;
}
footer{
background-color: black;
color: white;
width: 100vw;
height: 1.8rem;
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
}
h1{
font-size: 2rem;
font-weight: 800;
color: rgb(75, 0, 75);
}
.main{
width: 60vw;
height: 80vh;
background-color: rgb(255, 255, 255);
border-radius: 1rem;
padding: 1rem;
overflow-x:hidden;
overflow-y:scroll;
border: 3px solid purple;
box-shadow: 3px 3px 5px purple;
}
::-webkit-scrollbar {
width: 0px;
border: 2px solid blue;
}
#eventInput{
padding: .5rem;
/* border: none; */
width: 55%;
font-weight: 600;
font-size: 1.1rem;
box-shadow: 3px 3px 6px rgb(167, 165, 165);
outline: none;
border: none;
color: purple;
}
#eventDate{
padding: .5rem;
width: 22%;
font-weight: 600;
font-size: 1.1rem;
box-shadow: 3px 3px 6px rgb(167, 165, 165);
outline: none;
border: none;
}
#eventAdd{
padding: .5rem;
border-radius: .2rem;
font-weight: 600;
box-shadow: 3px 3px 5px rgb(80, 231, 173);
font-size: 1.2rem;
background-color: rgb(21, 223, 206);
border: none;
width: 4rem;
}
.input{
display: flex;
justify-content: space-around;
align-items: center;
height: 4rem;
box-shadow: 3px 3px 6px rgb(167, 165, 165);
border-radius: .5rem;
background-color: white;
position: sticky;
top: 0;
}
.onClick{
font-size: 1.4rem;
}
.todoDiv{
border:2px solid purple;
width: 100%;
height: 4.3rem;
margin: 1rem 0rem;
border-radius: .5rem;
display: flex;
justify-content: space-around;
align-items: center;
box-shadow: 3px 3px 6px rgb(71, 34, 71);
}
.todoPD{
width: 54%;
height: 50%;
color: purple;
font-weight: 700;
border: 1px solid darkcyan;
padding: 0rem .7rem;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 2px 2px 4px rgb(78, 168, 168);
}
.todoEdit{
height: 50%;
width: 18%;
background-color: green;
border: none;
font-size: .8rem;
font-weight: 600;
}
.todoDelete{
height: 50%;
width: 18%;
background-color: red;
border: none;
font-size: .8rem;
font-weight: 600;
}
.todoP{
font-size: 1.5rem;
width: 67%;
height: 90%;
}
.todoD{
width: 27%;
height: 90%;
font-size: .9rem;
color: black;
font-weight: 600;
padding: 2px;
height: 1.2rem;
border-radius: 2px;
box-shadow: 1px 1px 4px black;
}
.delete{
display: none;
}
.editNone{
display: none;
}
.finalB{
float: right;
}
.todoSpan{
width: .5rem;
height: .5rem;
border-radius: 50%;
background-color: purple;
}