-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (115 loc) · 2.88 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
outline: none;
border: 0;
color: #555;
transition: all 0.1s;
font-family:"Poppins", serif;
}
body {
height: 100vh;
width: 100%;
padding:30px 20px;
}
.container {
padding: 30px 20px;
background-color: #fff;
display: inline-block;
border-radius: 3px;
margin: auto;
width: 100%;
}
.container #text {
width: 100%;
height: 50px;
padding:0 20px;
padding-right: 80px;
font-size: 17px;
border: 2px solid #dde;
border-radius: 5px;
}
.container #text:focus {
border: 2px solid #6B6F94;
}
.container h2 {
text-align: center;
margin-bottom: 30px;
font-weight: 100;
}
.container .input_container {
position: relative;
}
.fa-search {
font-size: 25px;
color: #ddd;
}
button {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 20px;
background-color: transparent;
height: 100%;
width: auto;
}
.fa-times {
position: absolute;
right: 60px;
color: #2D315F;
font-size: 20px;
top: 50%;
opacity: 0;
transform: translateY(-50%);
}
.content {
height: 400px;
width: 100%;
background-color: #fff;
margin-top auto;
margin-top: 20px;
display: none;
overflow-y: auto;
}
.content div {
position: relative;
padding: 20px 10px;
margin: 10px 0;
border-bottom: 5px solid #6B6F94;
border-radius:10px;
box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}
.res1 .fa-volume-up {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 30px;
}
.content i {
font-size: 15px;
color: #735835;
}
.content div h3 {
margin: 20px 0;
color: #794B10;
}
span {
display: block;
inline-size: 100%;
overflow-wrap: break-word;
line-height: 30px;
color: #889;
}
.center {
line-height: 40px;
color: #888;
inline-size: 100%;
overflow-wrap: break-word;
}
.content div .fa-volume-up {
position: absolute;
top: 43px;
right: 30px;
}