-
Notifications
You must be signed in to change notification settings - Fork 11
/
luck_theme_style.css
109 lines (98 loc) · 2.02 KB
/
luck_theme_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
.herobody {
/* background-color: #ca4444; */
background-color: #ff2c5a;
height: 100vh; /* Ensures the background covers the entire viewport */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
.pet-me-text {
position: fixed;
bottom: 0;
left: 50%; /* Position it in the center */
transform: translateX(-50%); /* Adjust to perfectly center */
color: white;
font-size: 14px; /* Adjust as needed */
padding: 5px; /* Optional padding */
font-style: oblique;
transition: opacity 0.01s ease;
margin-bottom: 50px;
}
#canvas1 {
/* border: 5px solid black; */
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
width: 800px;
height: 700px;
}
#canvas1:hover {
cursor: pointer;
}
.tiny_clover {
left: 6%;
width: 30px;
height: 30px;
z-index: 2;
}
.tiny_clover:hover {
cursor: pointer;
}
.containerr {
font-family: "Luckiest Guy", cursive;
font-weight: 400;
font-style: normal;
}
.luck-bar {
font-family: "Luckiest Guy", cursive;
font-weight: 400;
font-style: normal;
position: fixed;
bottom: 0;
right: 0;
margin-bottom: 10px;
background-color: #f50136;
border-radius: 5%;
color: white;
text-align: center;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
z-index: 1000;
box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.5);
}
.luck-play {
font-family: "Luckiest Guy", cursive;
font-weight: 400;
font-size: 25px;
font-style: normal;
position: fixed;
bottom: 0;
left: 0;
margin-left: 10px;
margin-bottom: 15px;
background-color: #f50136;
border-radius: 5%;
color: white;
text-align: center;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
z-index: 1000;
box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
.luck-bar {
font-size: 2.5vw; /* Smaller font size on small screens */
}
.pet-me-text {
font-size: 4vw; /* Adjust font size */
}
#canvas1 {
width: 95vw; /* Further adjust canvas size */
height: 70vh;
}
}