-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyles.css
115 lines (103 loc) · 2.09 KB
/
styles.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
.custom-button {
background-color: #0064e0;
color: white;
padding: 12px 24px;
border: none;
border-radius: 8px;
cursor: pointer;
transition:
background-color 0.3s ease,
transform 0.2s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.custom-button:hover {
background-color: #0082fb;
transform: translateY(-2px);
}
.custom-button:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.custom-modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
z-index: 1000;
width: 80%;
max-width: 600px;
max-height: 80%;
overflow-y: auto;
}
.custom-backdrop {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
z-index: 999;
}
.custom-floating-button {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 998;
margin-left: 10px;
}
.dlc-list,
.downgrade-section {
margin-top: 20px;
}
.dlc-item,
.downgrade-item {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
padding: 12px;
border: 1px solid #ddd;
border-radius: 8px;
background-color: #f9f9f9;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.dropdown {
margin-top: 10px;
padding: 8px;
border-radius: 8px;
border: 1px solid #ccc;
width: 100%;
margin-bottom: 20px;
}
.custom-close-button {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #333;
transition: color 0.3s ease;
}
.custom-close-button:hover {
color: #000;
}
.progress-indicator-background {
width: 100%;
height: 10px;
background-color: #f0f0f0;
border-radius: 5px;
margin-top: 10px;
}
.progress-indicator {
width: 0%;
height: 100%;
background-color: #00a400;
border-radius: 5px;
transition: width 0.3s ease;
}