-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (108 loc) · 1.99 KB
/
style.css
File metadata and controls
112 lines (108 loc) · 1.99 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@200&display=swap");
* {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
}
body {
background: whitesmoke;
font-size: 12px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 80vh;
}
@media (max-width: 700px) {
body {
height: 90vh;
}
}
main .wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 50vw;
}
@media (max-width: 700px) {
main .wrapper {
width: 80vw;
}
}
main h2 {
font-family: "Lobster", cursive;
font-size: 40px;
margin-bottom: 30px;
color: #333;
text-align: center;
}
main h2 span {
font-family: "Lobster", cursive;
color: tomato;
}
main .underline {
position: relative;
display: inline-block;
}
main .underline::before {
position: absolute;
content: "";
background: rgba(245, 119, 97, 0.726);
z-index: -1;
width: 100%;
height: 11px;
bottom: 5px;
}
main #output {
text-align: center;
}
main form {
display: flex;
align-items: center;
}
main form input {
border-radius: 5px;
border: 1px solid tomato;
color: #333;
width: 250px;
height: 30px;
padding-left: 10px;
background: #f5f5f5;
}
main form input:focus {
outline: none;
}
main form button {
margin-left: 10px;
width: 80px;
height: 31px;
border-radius: 5px;
border: none;
color: tomato;
font-weight: bolder;
font-family: Arial, Helvetica, sans-serif;
background-color: whitesmoke;
cursor: pointer;
}
main form button:hover {
border: none;
color: whitesmoke;
background: tomato;
}
@media (max-width: 700px) {
main form button {
display: none;
}
}
footer {
margin-top: 10px;
}
footer a {
text-decoration: none;
color: #333;
}
/*# sourceMappingURL=style.css.map */