-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
162 lines (139 loc) · 2.99 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
<!-- Copyright (c) 2023 Outspect. All rights reserved. -->
<!-- This code is owned by Outspect. Unauthorized copying or reproduction is prohibited. -->
*/
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #121212;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
text-align: center;
padding: 20px;
background-color: rgb(34, 34, 34);
background-image: linear-gradient(45deg, rgb(11, 0, 43), rgb(39, 0, 29), rgb(57, 0, 68), rgb(30, 0, 70));
transition: transform 0.2s ease;
animation: gradientShift 5s infinite linear;
background-size: 500%;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.title {
margin-bottom: 30px;
font-size: 2rem;
}
.boxes {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.box {
background-color: #111111;
border-radius: 10px;
padding: 20px;
margin: 20px;
text-align: center;
flex: 1;
max-width: 300px;
box-shadow: 0 0 10px rgba(1, 33, 75, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box:hover {
transform: scale(1.05);
box-shadow: 0 0 10px rgba(47, 128, 237, 0.5);
}
.box h2 {
margin-bottom: 10px;
}
.dark-mode-textbox {
padding: 10px;
border: 1px solid #444;
border-radius: 5px;
font-size: 14px;
width: 250px;
background-color: #333;
color: #fff;
outline: none;
transition: border-color 0.3s, background-color 0.3s;
margin-bottom: 10px;
}
.dark-mode-textbox::placeholder {
color: #999;
}
.dark-mode-textbox:focus {
border-color: #007bff;
background-color: #111;
box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.button {
display: inline-block;
padding: 10px 20px;
background-image: linear-gradient(45deg, rgb(47, 128, 237), rgb(110, 9, 141), rgb(55, 0, 255), rgb(47, 128, 237));
background-size: 400%;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
transition: transform 0.2s ease;
animation: gradientShift 5s infinite linear;
}
.button:hover {
transform: scale(1.05);
box-shadow: 0 0 10px rgba(47, 128, 237, 0.5);
}
.patch-notes {
background-color: #111111;
color: white;
padding: 20px;
margin-top: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(1, 33, 75, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
font-family: "Courier New", monospace;
}
.patch-notes:hover {
transform: scale(1.005);
box-shadow: 0 0 10px rgba(47, 128, 237, 0.5);
}
.patch-table {
margin-top: 10px;
}
.patch-table table {
width: 100%;
border-collapse: collapse;
}
.patch-table th, .patch-table td {
padding: 8px 12px;
text-align: left;
border-bottom: 1px solid #666;
}
.patch-table th {
font-weight: bold;
}
.green-text {
color: #00ff00;
}
.orange-text {
color: #ff9900;
}
.red-text {
color: #ff0000;
}
@keyframes gradientShift {
0%, 100% {
background-position: 0% 50%;
}
25% {
background-position: 100% 50%;
}
50% {
background-position: 0% 50%;
}
75% {
background-position: 100% 50%;
}
}