-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (94 loc) · 1.8 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (94 loc) · 1.8 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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background-color: rgba(115, 166, 173,0.5);
display: flex;
width: 100%;
justify-content: center;
align-items: center;
flex-direction: column;
}
header{
border: 1.5px solid black;
border-radius: 5px;
box-shadow: 2px 2px 2px 2px grey;
margin: 5px;
display: inline;
width: 95%;
text-align: center;
transition-duration: 0.5s;
transition-timing-function: ease-in;
}
header:hover{
box-shadow: 3px 3px 3px 3px grey;
}
.searchDiv{
background-color: #73A6AD;
width: 95%;
border-radius: 5px;
align-self: center;
display: flex;
align-items: center;
justify-content: center;
margin: 5px;
padding: 15px;
}
.dataCont{
background-color: #73A6AD;
width: 95%;
border-radius: 5px;
align-self: center;
}
.meaning{
background-color: white;
border-radius: 5px;
margin: 10px;
}
audio{
background-color: none;
padding: 0%;
margin: 5px;
height: 20px;
}
.data{
display: flex;
justify-content: center;
flex-direction: column;
}
.content{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.meaning{
width: 90%;
background-color: #ffffff;
color: black;
border: 2px solid black;
}
footer{
position: relative;
bottom:0%;
width: 100%;
background-color: rgba(115, 166, 173,0.5);
text-align: center;
color: black;
border: 1.5px solid black;
border-radius: 5px;
box-shadow: 2px 2px 2px 2px grey;
margin: 5px;
display: inline;
width: 95%;
transition-duration: 0.5s;
transition-timing-function: ease-in;
}footer:hover{
box-shadow: 3px 3px 3px 3px grey;
}
a{
text-decoration: none;
color: black;
}