-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (79 loc) · 1.32 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
@import url('https://fonts.googleapis.com/css2?family=Muli:wght@300;400&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
--webkit-font-smoothing: antialiased;
}
body {
font-family: 'Muli', sans-serif;
min-height: 100vh;
}
.container {
width: 1152px;
max-width: 90%;
margin: 0 auto;
}
nav {
background: #553C9A;
color: #fff;
padding: 1rem 0;
}
section.input {
padding-top: 100px;
}
h2 {
text-align: center;
font-size: 36px;
}
.form__wrap {
display: flex;
justify-content: center;
}
.input__wrap {
display: flex;
align-items: center;
border: 1px solid #ddd;
margin-top: 20px;
}
input {
border: none;
padding: 10px;
font-size: 16px;
min-width: 400px;
outline: none;
}
button{
background:#553C9A;
color: #fff;
height: 100%;
font-size: 16px;
padding: 0 20px;
cursor: pointer;
}
section.data{
max-width: 600px;
margin: 0 auto;
margin-top: 20px;
text-align: center;
}
.loading {
display: none;
}
section.data p.def {
font-size: 20px;
color: #2D3748;
line-height: 1.6;
}
.suggested {
background: #B794F4;
color: #fff;
padding: 2px 10px;
border-radius: 4px;
margin-right: 10px;
margin-top: 5px;
display: inline-block;
}
.audio {
margin-top: 20px;
}