-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
147 lines (146 loc) · 3.24 KB
/
Copy pathstyle.css
File metadata and controls
147 lines (146 loc) · 3.24 KB
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
*{
padding: 0;
margin: 0;
font-family: sans-serif;
}
button{
cursor: pointer;
text-transform: capitalize;
}
body{
width: 100%;
height: 100vh;
justify-content: center;
align-items: flex-start;
display: flex;
background: #EAF6F6;
}
.container{
position: relative;
top: 5rem;
width: 30%;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
background-color:#FEFfFf;
border-radius: 1rem;
box-shadow: 3rem .1rem 5rem .1rem rgba(0,0,0,0.1);
color: #3D3C42;
text-transform: capitalize;
}
.container .form_container{
width: 100%;
height: 10rem;
justify-content: center;
align-items: center;
display: flex;
}
.container .form_container form{
width: 100%;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
gap:1.5rem;
}
.container .form_container form .alert.danger{
color: #AA3A3A;
}
.container .form_container form .alert.success{
color: #50D890;
}
.container .form_container form .input_box{
width: 100%;
justify-content: center;
align-items: center;
display: flex;
}
.container .form_container form .input_box input{
width: 13rem;
height: 1.3rem;
padding: .2rem 1rem .2rem 1rem;
font-size: 1rem;
outline: none;
border: none;
background: #EAF6F6;
text-transform: lowercase;
}
.container .form_container form .input_box button{
padding: .33rem .7rem .33rem .7rem;
border: none;
font-size: 15px;
background: #87A2FB;
letter-spacing: .2rem;
}
.container .list_container{
width: 100%;
justify-content: space-around;
align-items: center;
display: flex;
flex-direction: column;
}
.container .list_container .list_clear_btn{
width: 100%;
height: 4.5rem;
justify-content: center;
align-items: center;
display: flex;
}
.container .list_container .list_clear_btn button{
padding: .4rem 1.5rem .4rem 1.5rem;
font-size: 15px;
border-radius: .5rem;
background: #7F5283;
color: #FEFBF6;
border: none;
}
.container .list_container .list_item{
width: 95%;
height: 100%;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
gap:1rem;
}
.container .list_container .list_item .item{
width: 100%;
height: 2.1rem;
justify-content: center;
align-items: center;
display: flex;
border: 2px solid #5555;
border-radius: 5rem;
position: relative;
}
.container .list_container .list_item .item:hover{
background: #F9F8EB
}
.container .list_container .list_item .item p{
font-size: 1.4rem;
position: absolute;
left: 3rem;
}
.container .list_container .list_item .item .button{
justify-content: flex-end;
align-items: center;
display: flex;
gap:1.5rem;
position: absolute;
right: 3rem;
}
.container .list_container .list_item .item .button button{
justify-content: flex-end;
align-items: center;
display: flex;
font-size: 1rem;
border: none;
background: none;
}
.container .list_container .list_item .item .button button .fa-pen-to-square{
color: #50D890;
}
.container .list_container .list_item .item .button button .fa-trash{
color: #AA3A3A
}