-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss1.css
More file actions
99 lines (94 loc) · 1.89 KB
/
Copy pathcss1.css
File metadata and controls
99 lines (94 loc) · 1.89 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
background: linear-gradient(to bottom,#5fa70d 1%,#12ad58 70%);
width: 100%;
height: 86vh;
}
.wrapper{
margin: 120px auto;
padding: 24px;
background-color: aquamarine;
width: 100%;
max-width: 400px;
border-radius: 5px;
}
.wrapper header{
font-size: 30px;
font-weight: 600;
}
.wrapper .inputfield{
display: flex;
height: 45px;
width: 100%;
margin: 20px 0;
}
.inputfield input{
width: 85%;
height: 100%;
border: 1px solid #ccc;
font-size:19px;
border-radius: 3px;
}
.wrapper .list{
max-height: 250px;
overflow-y: auto;
}
.inputfield button{
outline: none;
border: none;
color: aliceblue;
width: 10%;
background-color: #8f9719;
font-size: 20px;
cursor:pointer;
margin-left: 4px;
border-radius: 3px;
opacity: 0.6;
pointer-events: none;
}
.inputfield button.active{
opacity: 1;
pointer-events: auto;
}
.list li{
height: 45px;
line-height: 45px;
position: relative;
background: rgb(147, 207, 165);
border-radius: 3px;
margin-bottom: 8px;
padding: 0px 15px;
overflow: hidden;
}
.list li span{
position: absolute;
right: -40px;
color: rgb(233, 224, 224);
background-color: #0a87a7;
width: 45px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
overflow: hidden;
}
.list li:hover span{
right: 0px;
}
.wrapper .footer{
display: flex;
width: 100%;
justify-content: space-between;
margin-top: 20px;
}
.footer button{
background-color: rgb(211, 18, 18);
color: aliceblue;
width: 50px;
font-size: 20px;
font-weight: 400;
}