-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (110 loc) · 2.31 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
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
body {
font-family: 'Schoolbell', cursive;
background-image: url('https://wallpapercave.com/wp/wp8862785.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
text-align: center;
margin: 0;
padding: 0;
color: black;
}
h1 {
color: black;
font-size: 3rem;
text-shadow: 2px 2px white;
margin-bottom: 20px;
border-bottom: 4px solid black;
padding-bottom: 10px;
}
.container {
padding: 30px;
border: 3px dashed black;
margin-top: 30px;
width: 80%;
margin: 0 auto;
background-color: rgb(255, 250, 235);
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 15px;
position: relative;
}
.container::before,
.container::after {
content: "";
position: absolute;
width: 80px;
height: 40px;
background-size: cover;
transform: rotate(-10deg);
}
.container::before {
top: -20px;
left: -20px;
}
.container::after {
bottom: -20px;
right: -20px;
transform: rotate(10deg);
}
.meme-container img {
max-width: 90%;
max-height: 70vh;
height: auto;
margin-top: 20px;
border: 4px solid black;
padding: 10px;
border-radius: 10px;
transition: transform 0.3s ease;
}
.meme-container img:hover {
transform: scale(1.05);
}
#meme-title {
font-size: 1.5rem;
margin-top: 10px;
font-weight: bold;
color: black;
text-transform: uppercase;
letter-spacing: 1px;
}
button {
background-image: url('https://scrapyard.hackclub.com/elements/[email protected]');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
width: 300px;
height: 100px;
border: none;
font-size: 1.4rem;
cursor: pointer;
font-weight: bold;
text-transform: uppercase;
color: black;
letter-spacing: 1px;
transition: all 0.3s ease;
border-radius: 12px;
margin: 10px 0;
padding: 0;
}
button:hover {
transform: scale(1.1);
background-color: black;
color: white;
box-shadow: none;
}
button:active {
transform: scale(0.98);
box-shadow: none;
}
.footer-text {
font-size: 0.8rem;
color: black;
font-weight: bold;
text-align: center;
letter-spacing: 1px;
margin-top: 10px;
}
.heart {
color: red;
font-size: 1.2rem;
}