-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (79 loc) · 1.42 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
/* Primary settings */
body {
font-family: Arial, sans-serif;
background-color: #131313;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
color: white;
}
.container {
max-width: 600px;
padding: 20px;
border-radius: 10px;
}
/* Title Styling */
#title {
margin-bottom: 20px;
}
/* Button Styling */
#generate-button {
width: 150px;
height: 150px;
font-size: 20px;
font-weight: bold;
background-color: white;
color: black;
border: 2px solid black;
border-radius: 20px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* Hover effect: Zoom and raise */
#generate-button:hover {
transform: scale(1.05);
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
/* Button press animation: Flash */
#generate-button:active {
animation: flash 0.5s;
}
@keyframes flash {
0% {
background-color: rgb(255, 224, 194);
}
100% {
background-color: white;
}
}
/* Hidden elements */
.hidden {
display: none;
}
/* Footer Styling */
footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
padding: 10px 0;
background-color: #ffffff00;
font-size: 14px;
}
footer a {
color: #ff7b00;
text-decoration: none;
font-weight: bold;
}
footer a:hover {
text-decoration: underline;
}
h2 {
margin-bottom: 10px;
color: rgb(255, 169, 57);
}