-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (117 loc) · 2.54 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500;600;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css");
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background: linear-gradient(90deg, #8052ec, #d161ff);
overflow: hidden;
}
.container {
display: flex;
flex-direction: column;
gap: 50px;
width: 55vw;
margin: auto;
justify-content: center;
margin-top: 10vw;
padding: 10px;
/* background: #000; */
}
.textInput{
display: flex;
justify-content: space-between;
padding: 30px 20px;
background-color: rgba(255, 255, 255, 0.208);
border-radius: 10px;
box-shadow: 7px 7px 30px 1px #00000052 ;
}
.textInput input{
padding: 10px 10px;
width: 70%;
font-size: 15px;
border: 0;
border-radius: 5px;
}
#Text:focus{
outline: 3px solid #8052ec;
}
.textInput input:first-letter{
text-transform: capitalize
}
.textInput button{
padding: 10px 15px;
/* margin-left: 10px; */
font-size: 15px;
border: 0;
border-radius: 5px;
transition: .2s;
background: #ffffff6b;
color: #000000;
/* font-weight: 700; */
}
button:hover{
cursor: pointer;
transform: scale(.9);
}
#textArea{
display: flex;
justify-content: center;
padding: 12px 12px;
background-color: rgba(255, 255, 255, 0.208);
border-radius: 10px;
box-shadow: 7px 7px 30px 1px #00000052 ;
position: relative;
}
#tasks{
display: flex;
flex-direction: column;
gap: 6px;
justify-content: center;
align-items: center;
position: relative;
min-height: 50px;
width: 50vw;
border-radius: 5px;
background: #ffffffc7;
}
#tasks span{
display: flex;
justify-content: space-between;
align-items: center;
/* background-color: red; */
/* border-bottom: 2px solid #d1d3d4; */
width: 45vw;
position: relative;
padding: 8px 2px;
}
.addedTask{
text-transform: capitalize;
}
.deleteBtn{
padding: 7px 10px;
background: #8052ec;
outline: none;
border: 0;
border-radius: 5px;
color: #ffffff;
}
.complited{
text-decoration: line-through;
}
@media(max-width: 600px) {
.container{
width: 90vw;
}
#tasks{
width: 84vw;
}
}
@media(min-width: 1230px){
.container{
width: 700px;
}
}