-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (108 loc) · 1.84 KB
/
style.css
File metadata and controls
126 lines (108 loc) · 1.84 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
122
123
124
125
126
body {
padding: 0;
margin: 0;
background-color: #222222;
color: white;
font-family: Arial, Helvetica, sans-serif;
width: 100%;
}
button {
border: none;
box-shadow: none;
background-color: slategray;
transition: linear 0.2s;
padding: 2%;
max-width: 25%;
animation: fadeIn ease 0.2s;
}
button:focus {
outline: none;
}
button:hover {
background-color: lightgray;
}
.absCentered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
}
.centered {
margin: 0 auto;
text-align: center;
}
#upgradeButtons {
margin-top: 5%;
}
.resetButtons {
width: 100%;
height: 100%;
position: absolute;
z-index: -99;
}
.flex-container {
margin: 5%;
}
.gray {
color: darkgray;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.ableToPurchase {
border: 2px solid #5f5;
margin: 3px;
}
.notAbleToPurchase {
border: 2px solid #f55;
margin: 3px;
}
/* The slider itself */
.slider {
width: 10%; /* Full-width */
height: 25px; /* Specified height */
background: #4d4949; /* Grey background */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: 0.2s; /* 0.2 seconds transition on hover */
transition: opacity 0.2s;
}
/* Mouse-over effects */
.slider:hover {
opacity: 1; /* Fully shown on mouse-over */
}
.tabButton {
background-color: lightskyblue;
padding: 1%;
margin-left: 1%;
margin-right: 1%;
}
#tabBar {
display: flex;
justify-content: center;
align-items: center;
}
/* SACRIFICE BUTTON */
.resetButton-1 {
background-color: black;
color: white;
}
.resetButton-1:hover {
background-color: white;
color: black;
}
/* MANA BUTTON */
.resetButton-2 {
background-color: rgb(48, 141, 194);
color: rgb(9, 37, 158);
text-shadow: 1px 1px rgb(8, 107, 146);
}
.resetButton-2:hover {
background-color: rgb(62, 216, 131);
color: rgb(12, 92, 16);
}