-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
127 lines (105 loc) · 1.77 KB
/
app.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* Your styles should be mobile-first and responsive */
/**
* If you are unclear on how to utilize a mobile-first, responsive technique to write your CSS, here is an example:
*
* https://github.com/andreacardybailey/responsive_example/blob/master/styles/responsive-base.css
*
*/
* {
background-color: beige;
box-sizing: border-box;
}
h1, h2, h3, h4 {
font-family: 'Cinzel', serif;
}
h4 {
font-size: 22px;
}
.incorrect {
font-size: 35px;
font-weight: bolder;
}
h1 {
background-color: rgb(165, 165, 64);
width: 800px;
border-radius: 4px;
margin: auto;
padding-top: 20px;
padding-bottom: 20px;
}
.ship {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
img {
margin: auto;
max-width: 275px;
max-height: 275px;
}
form {
font-size: 25px;
font-family: 'Cinzel', serif;
font-weight: bold;
}
input[type=submit] {
border-radius: 4px;
background-color: rgb(165, 165, 64);
border: none;
color: rgb(10, 10, 10);
text-align: center;
font-size: 28px;
padding: 20px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.direction {
font-size: 32px;
}
@media (min-width: 320px) {
h1 {
font-size: 25px;
width: 300px;
}
img {
max-width: 275;
max-height: 275;
}
}
h5 {
font-size: 32px;
font-family: 'Cinzel', serif;
}
@media (min-width: 760px) {
img {
max-width: 500px;
max-height: 500px;
}
.resultspage {
max-width: 300px;
max-height: 300px;
}
h1 {
width: 500px;
}
h5 {
font-size: 48px;
font-family: 'Cinzel', serif;
}
}
@media (min-width: 1024px) {
img {
max-width: 600px;
max-height: 600px;
}
.resultspage {
max-height: 450px;
max-width: 450px;
}
h1 {
width: 80%;
}
}