-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (88 loc) · 1.4 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
--webkit-font-smoothing: antialiased;
}
body {
font-family: "Muli", sans-serif;
min-height: 100vh;
background-image: url(https://i.ibb.co/j5k5MLw/Untitled-design-2.png);
background-size: cover;
}
.container {
width: 1152px;
max-width: 90%;
margin: auto;
}
.container p{
text-align: center;
font-size: 3.5rem;
text-decoration: underline;
}
nav {
/* background: #ff5151; */
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: 26px;
min-width: 400px;
outline: none;
}
button {
background: #000000;
color: #fff;
height: 100%;
font-size: 26px;
padding: 0 20px;
cursor: pointer;
}
section.data {
max-width: 600px;
margin: 0 auto;
margin-top: 20px;
text-align: center;
}
.loading {
display: none;
font-size: 26px;
}
section.data p.def {
font-size: 26px;
text-decoration: none;
color: #ffffff;
line-height: 1.6;
}
.suggested {
background: #ffffff;
color: #000;
font-size: larger;
padding: 2px 10px;
border-radius: 6px;
margin-right: 10px;
margin-top: 5px;
display: inline-block;
}
.audio {
margin-top: 20px;
}