-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (64 loc) · 1.62 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
@import url("https://fonts.googleapis.com/css2?family=Platypi:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Signika+Negative:wght@300..700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Jersey+15&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Roboto+Slab:wght@100..900&family=Signika+Negative:wght@300..700&family=Space+Grotesk:wght@300..700&display=swap');
nav {
font-family: "Platypi", serif;
display: flex;
font-size: 2rem;
padding: 0.6rem;
padding-left: 1.5rem;
background-color: RGB(0, 0, 128);
color: aliceblue;
}
h1 {
font-family: "Pacifico", cursive;
}
.valueget,
.result {
font-family: "Signika Negative", sans-serif;
}
.result {
display: flex;
}
.valueget input {
width: 11% !important;
}
img {
height: 14rem;
width: 15rem;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 1rem;
}
.result {
justify-content: center;
margin-top: 3rem;
color:rgb(0, 0, 128);
font-family: "Roboto Slab", serif;
font-weight: 900 !important;
font-size: large;
}
@media screen and (max-width: 768px) {
.valueget,
.result {
display: block;
margin: 0 auto;
max-width: 50rem;
text-align: center;
}
.result {
margin-top: 1rem !important;
}
.code,
.amount,
.button {
display: block;
margin: 1rem auto !important;
width: 50%;
}
.valueget input{
width: 50% !important;
}
}