-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
94 lines (79 loc) · 1.5 KB
/
main.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
html,
body {
height: 100%;
}
body {
font-family: Helvetica, sans-serif;
margin: 0;
background: url(./Fire-background.png) repeat-x bottom;
background-position-y: 150%;
display: flex;
flex-direction: column;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
body {
background: url(./[email protected]) repeat-x bottom;
background-position-y: 110%;
}
}
main {
text-align: center;
flex: 1 0 auto;
}
.header__text {
padding: 2rem 0;
}
footer {
margin-top: 2rem;
flex-shrink: 0;
}
.header-background {
background: url("./Megan-Thee-Header.png") no-repeat center;
background-size: contain;
height: 250px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.header-background {
background: url("./[email protected]") no-repeat center;
background-size: contain;
height: 250px;
}
}
.megan-thee {
font-size: 3em;
font-weight: bold;
text-transform: uppercase;
}
@media (max-width: 640px) {
.megan-thee {
font-size: 2rem;
}
}
.btn-generate {
background: #d81b1a;
cursor: pointer;
color: #fff;
font-size: 1.5rem;
font-weight: bold;
padding: 0.75rem 1.75rem;
border-radius: 15px;
outline: none;
box-shadow: #dadada 0px 0px 5px;
}
.wordgen {
border-bottom: 3px solid black;
}
.credits {
text-align: left;
bottom: 0;
padding: 1rem;
text-transform: uppercase;
font-weight: bold;
}
.credits a {
color: #d81b1a;
text-decoration: none;
}
.credits p {
margin: 0 0 10px;
}