-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
56 lines (49 loc) · 995 Bytes
/
index.css
File metadata and controls
56 lines (49 loc) · 995 Bytes
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
body {
margin-top: 200px;
display: grid;
justify-content: center;
align-items: center;
gap: 10px;
background-color: #2867c585;
}
#meme-image {
width: 580px;
height: 700px;
display: none;
}
.primary-btn {
padding: 2%;
margin-top: 10px;
padding: 10px 20px;
font-size: 40px;
font-weight: 600;
color: #fff;
background-color: #b96969;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
position: relative;
width: 400px;
height: 200px;
}
.alignment{
display: flex;
justify-content: center;
text-align: center;
align-items: center;
gap: 10px;
}
.primary-btn:hover {
background-color: #c668e2;
}
#meme-container {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
#meme-container button {
margin-top: 10px; /* Add some space between the buttons and the image */
}