-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (80 loc) · 1.47 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
*{
margin: 0;
padding: 0;
}
body{
background-color: #262429;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
background-color: #8B7E92;
height: 90vh;
width: 140vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow for elevation */
}
h1{
margin-bottom: 5rem;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.inner-container{
background-color: #9E92A2;
height: 60vh;
width: 110vh;
display: flex;
flex-direction: column;
align-items: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow for elevation */
}
.search-container{
margin-top: 3rem;
display: flex;
height: 6rem;
}
input{
height: 3rem;
width: 30rem;
font-size: 2rem;
border: none;
outline: none;
padding: 0.5 rem;
}
.search-button button img{
height: 2rem;
}
#btn-search{
height: 3rem;
width: 3.2rem;
border: none;
background-color: white;
cursor: pointer;
}
.answer-container{
background-color: white;
height: 38vh;
width: 90vh ;
padding: 3rem;
max-height: 25vh;
}
.answer-heading{
display: flex;
font-size: 1.5rem;
}
.audio{
margin-left: 30rem;
cursor: pointer;
}
.audio img{
height: 2.5rem;
width: 2.5rem;
opacity: 0.6;
}
.definition{
font-size: 1.7rem;
}