forked from kishanrajput23/Java-Projects-Collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
167 lines (147 loc) · 2.74 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
font-weight: bold;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-image: linear-gradient(to top left, lightblue, cyan, lightblue);
}
.wrapper {
width: 420px;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 20px;
padding: 28px 28px 45px;
}
.wrapper header {
font-size: 28px;
font-weight: 500;
font-family: monospace;
text-align: center;
}
.wrapper .search {
position: relative;
margin: 35px 0 18px;
}
.search input {
height: 53px;
width: 100%;
font-size: 16px;
outline: none;
padding: 0 42px;
border: 1px solid #999;
border-radius: 5px;
}
.search input:focus {
padding: 0 41px;
border: 2px solid black;
}
.search input::placeholder {
color: #b8b8b8;
}
.search :where(i, span) {
position: absolute;
top: 50%;
color: #999;
transform: translateY(-50%);
}
.search i {
left: 18px;
font-size: 16px;
pointer-events: none;
}
.search input:focus ~ i {
color: rgb(35, 182, 231);
}
.search span {
right: 15px;
font-size: 1;
cursor: pointer;
display: none;
}
.search input:valid ~ span {
display: block;
}
.wrapper .info-text {
position: relative;
font-size: 12px;
color: #9a9a9a;
top: -15px;
left: 15px;
}
.wrapper.active .info-text {
display: none;
}
.info-text span {
font-weight: bold;
}
.wrapper ul li {
display: flex;
margin-bottom: 14px;
padding-bottom: 17px;
border-bottom: 1px solid #ccc;
align-items: center;
justify-content: space-between;
}
.wrapper ul {
height: 0;
opacity: 0;
overflow: hidden;
transition: all 0.2s ease;
}
.wrapper.active ul {
height: fit-content;
opacity: 1;
}
ul li:last-child {
margin: 0px;
padding: 0px;
border-bottom: 0px;
}
ul .word p {
font-size: 22px;
font-weight: bold;
}
ul .word span {
font-size: 12px;
color: #6f6e6e;
font-style: italic;
}
ul .word i {
cursor: pointer;
font-size: 15px;
color: #999;
}
.content li .details {
padding-left: 10px;
border-radius: 4px 0 0 4px;
border-left: 3px solid rgb(35, 182, 231);
}
.content li .details p {
font-size: 17px;
font-weight: bolder;
}
.content li .details span {
font-size: 15px;
font-weight: 500;
}
.content li .details span {
display: block;
max-height: 45px;
overflow: scroll;
}
.synonyms .details .list {
display: flex;
flex-wrap: wrap;
gap: 5px;
text-decoration: underline;
}
.synonyms .details .list span {
cursor: pointer;
}