-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (65 loc) · 1.45 KB
/
style.css
File metadata and controls
78 lines (65 loc) · 1.45 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: rgb(191, 0, 201);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
background-color: rgba(255,255,255,.3);
padding: 30px;
width: 90%;
border-radius: 10px;
box-shadow: 0 10px 10px rgba(0,0,0,.3);
display: flex;
flex-direction: column;
align-items: center;
margin: 10px;
max-width: 450px;
justify-content: center;
text-align: center;
}
.header{
font-size: 28px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
letter-spacing: 1px;
text-transform: capitalize;
margin: 10px 0 20px 0;
}
.input{
width: 350px;
padding: 10px 20px;
font-size: 16px;
margin: 5px 0 15px 0;
border: 2px solid rgba(255,255,255,0.4);
border-radius: 5px;
background-color: rgba(255,255,255,0.6);
}
.info-text{
font-family: Arial, Helvetica, sans-serif;
margin: 5px 0 10px 0;
}
.meaning-container{
display: flex;
font-family: Arial, Helvetica, sans-serif;
flex-direction: column;
align-items: center;
justify-content: center;
display: none;
}
.meaning-container p{
margin: 5px 0;
}
.meaning-container p .title,.meaning{
font-family: 'Courier New', Courier, monospace;
font-weight: 100;
}
.audio{
margin: 10px 0;
border-radius: 20px;
}