-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (108 loc) · 2.08 KB
/
style.css
File metadata and controls
121 lines (108 loc) · 2.08 KB
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
/* General Styling */
body {
background: repeating-linear-gradient(135deg,
#a09f9e,
#a09f9e 10px,
rgb(145, 145, 145) 10px,
rgb(145, 145, 145) 20px);
font-family: Arial, sans-serif;
color: #333;
text-align: center;
margin: 0;
padding: 20px;
}
/* Variable Display */
.variable-display {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 20px;
}
.var-row {
display: flex;
justify-content: center;
gap: 15px;
}
.vartext {
font-size: 1.2em;
color: #34495e;
}
/* Main Button Container */
#main-button-container {
margin: 30px auto;
text-align: center;
}
#clickbutton {
padding: 20px 30px;
font-size: 1.5em;
background-color: #e67e22;
color: #fff;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
transition: background-color 0.3s, transform 0.2s;
}
#clickbutton:hover {
background-color: #d35400;
transform: scale(1.05);
}
#buypup1:hover,
#prestigebutton:hover,
#rebirthbutton:hover {
background: #d35400;
}
/* Tutorial Box */
#tutorial {
width: 250px;
padding: 15px;
background-color: #ecf0f1;
border: 1px solid #bdc3c7;
border-radius: 5px;
font-size: 1em;
color: #7f8c8d;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
/* Upgrade Buttons */
.upgrade-buttons {
margin-top: 20px;
display: flex;
flex-direction: column;
gap: 10px;
}
.upgrades,
#buyallbutton,
#buypup1,
#toggleautoup,
#prestigebutton,
#rebirthbutton {
padding: 12px 20px;
font-size: 1.1em;
background-color: #3498db;
color: #fff;
border-radius: 5px;
transition: background-color 0.3s;
}
#buypup1,
#prestigebutton,
#rebirthbutton {
background-color:darkorange;
}
.upgrades:hover,
#buyallbutton:hover,
#toggleautoup:hover {
background-color: #2980b9;
}
/* Progress Bar */
.progress-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1%;
background-color: gray;
}
#progress {
height: 100%;
width: 0%;
/* dynamically controlled */
background-color: green;
}