-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
62 lines (52 loc) · 1.05 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
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
body {
font-family: 'Raleway', sans-serif;
color: rgba(255,255,255,.7);
text-transform: uppercase;
letter-spacing: .5rem;
background: linear-gradient(to right, rgb(181, 222, 255) , rgb(217, 152, 255)); /* Standard syntax */
width: 100%;
text-align: center;
}
body * {
padding: 1rem;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.random {
margin-top: 1rem;
}
.inputs {
flex-direction: row;
}
input {
height: 3rem;
width: 3rem;
padding: .1rem;
}
h1 {
font: 600 3rem 'Raleway', sans-serif;
text-transform: uppercase;
letter-spacing: .5rem;
}
h3 {
font: 900 1rem 'Raleway', sans-serif;
color: rgba(0,0,0,.7);
text-transform: none;
letter-spacing: 0.01rem;
}
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
h1 {
font: 500 2rem 'Raleway', sans-serif;
}
h2 {
font-size: 1.5rem;
}
}