-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (98 loc) · 1.98 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
*:not(i) {
font-family: "Poppins", sans-serif;
}
body {
height: 400px;
width: 500px;
background: linear-gradient(184deg, #8754ff, #8E2DE2);
}
#name{
font-family: "Poppins", sans-serif;
font-size:xx-large;
color: beige;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 50px;
}
.container {
background-color: #D2DAFF;
width: 90vmin;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
padding: 40px;
border-radius: 10px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.search-box {
width: 100%;
display: flex;
justify-content: space-between;
}
.search-box input {
padding: 5px;
width: 70%;
border: none;
outline: none;
border-bottom: 3px solid #8754ff;
font-size: 16px;
background-color: #D2DAFF;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.search-box button {
padding: 15px 0;
width: 25%;
background-color: #8754ff;
border: none;
outline: none;
color: #fff;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
border-radius: 5px;
}
.result {
position: relative;
}
.result h3 {
font-size: 30px;
color: rgb(77, 76, 76);
}
.result .word {
display: flex;
justify-content: space-between;
margin-top: 30px;
}
.result button {
background-color: transparent;
color: #8754ff;
border: none;
outline: none;
font-size: 18px;
}
.result .details {
display: flex;
gap: 10px;
color: rgb(82, 81, 81);
margin: 5px 0 20px 0;
font-size: 14px;
}
.word-meaning {
color: #000;
}
.word-example {
color: rgb(82, 81, 81);
font-style: italic;
border-left: 5px solid #8754ff;
padding-left: 20px;
margin-top: 30px;
}
.error {
margin-top: 80px;
text-align: center;
}