-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
57 lines (50 loc) · 893 Bytes
/
styles.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
.page {
text-align: center;
background-image: url(https://ac.goit.global/meme-generator/page-bg.jpg);
background-size: cover;
margin-top: 40px;
}
.meme-container {
position: relative;
margin-bottom: 16px;
max-width: 480px;
margin-left: auto;
margin-right: auto;
}
.image {
width: 100%;
max-height: 480px;
object-fit: cover;
}
.top-text,
.bottom-text {
font-size: 24px;
line-height: 24px;
font-weight: 700;
font-family: Arial, sans-serif;
color: #ffffff;
text-shadow: 1px 1px 2px #000000;
text-align: center;
margin: 0;
position: absolute;
width: 100%;
}
.top-text {
top: 20px;
}
.bottom-text {
bottom: 20px;
}
.next-btn {
background-color: #ff5062;
color: #fff;
border: none;
border-radius: 16px;
padding: 16px 20px;
font-size: 16px;
font-weight: 700;
line-height: 24px;
}
.next-btn:hover {
background-color: #b70042;
}