-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (102 loc) · 1.98 KB
/
style.css
File metadata and controls
120 lines (102 loc) · 1.98 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
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background: linear-gradient(#3d3d3d, #000);
color: white;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
}
.container {
width: 80%;
max-width: 800px;
background-color: #121212;
padding: 20px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.header {
text-align: center;
}
.header h1 {
font-size: 2em;
}
.header p {
font-size: 1.2em;
text-align: center;
margin-bottom: 2em;
}
.header a {
color: #1DB954;
text-decoration: none;
}
.version {
margin-bottom: 1em;
max-width: 800px;
background-color: #242424;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: end;
}
.version span {
display: block;
text-align: start;
font-size: 1.5em;
margin-bottom: 0.5em;
}
.links {
list-style-type: none;
padding: 0;
}
.links li {
margin-bottom: 0.5em;
}
.changelog {
font-size: 1.2em;
margin-bottom: 1em;
max-width: 800px;
background-color: #242424;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
white-space: pre-line;
}
.links {
list-style-type: none;
padding: 0;
}
.links li {
margin-bottom: 0.5em;
}
.button-link {
display: inline-block;
padding: 15px 40px;
background-color: #1DB954;
color: white;
text-decoration: none;
border-radius: 5em;
font-size: 16px;
text-align: center;
transition: background-color 0.3s;
}
.button-link:hover {
background-color: #1ED760;
}
.wave {
background-color: #101012;
box-shadow: 0 0 8px rgba(0, 255, 255, 0.402);
}
.wave a {
border: 2px solid #0ff;
border-radius: 0.3em;
background-color: #00000000;
padding: 15px 38px;
}
.wave a:hover {
background-color: rgba(0, 255, 255, 0.231);
}