-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (43 loc) · 895 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#container {
width: 100vw;
height: 100vh;
background: rgb(0, 0, 0);
color: white;
display: flex;
justify-content: center;
text-transform: capitalize;
font-size: 1.2rem;
}
#container h3 {
font-size: 1.5rem;
text-align: center;
line-height: 4;
}
#container input {
font: italic 500 1.2rem '';
letter-spacing: 0.05rem;
width: 90vw;
height: 40px;
padding: 0 0.5rem;
border: 0;
border-radius: 1rem 0.5rem;
text-transform: capitalize;
}
#container input::placeholder {
text-transform: lowercase;
color: rgba(0, 0, 0, 0.911);
}
@media screen and (min-width: 500px) {
#container h3 {
font-size: 2.3rem;
}
#container input {
width: 400px;
font-size: 1.5rem;
}
}