-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (98 loc) · 2.65 KB
/
style.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
/* Base styles */
html {
height: 100%;
}
body {
margin: 0;
padding: 0;
font-family: 'Rubik', sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
background-image: linear-gradient(to bottom right, #380158, #000000); /* Purple and black linear background gradient */
color: #ffffff; /* White text for contrast */
padding-top: 5vh;
}
.container {
width: 100%;
max-width: 960px;
flex-grow: 1;
}
.title {
font-size: 3rem;
margin-bottom: 20px;
text-shadow:
-2px -2px 0 rgba(0, 0, 0, 0.8),
2px -2px 0 rgba(0, 0, 0, 0.8),
-2px 2px 0 rgba(0, 0, 0, 0.8),
2px 2px 0 rgba(0, 0, 0, 0.8);
}
.description {
font-size: 1.2rem;
margin-bottom: 30px;
text-shadow:
-1px -1px 0 rgba(0, 0, 0, 0.8),
1px -1px 0 rgba(0, 0, 0, 0.8),
-1px 1px 0 rgba(0, 0, 0, 0.8),
1px 1px 0 rgba(0, 0, 0, 0.8);
}
.social-links {
display: flex;
justify-content: center;
gap: 20px;
padding: 20px 0;
flex-wrap: wrap;
}
/* Styles for rounded social links */
.social-link {
padding: 0.5rem 1rem;
color: #ffffff; /* White text for contrast */
text-decoration: none;
border-radius: 50px;
transition: transform 0.3s ease;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
/* Twitter button with Bluesky's brand blue */
.social-link.bluesky {
background-color: #1DA1F2; /* Bluesky blue */
}
/* YouTube button with YouTube's brand red */
.social-link.youtube {
background-color: #FF0000; /* YouTube red */
}
/* Patreon button with Patreon's brand orange */
.social-link.patreon {
background-color: #FF424D; /* Patreon orange */
}
/* Additional buttons */
.social-link.game {
background-color: #FFD700; /* Gold color for game button */
}
.social-link.discord {
background-color: #7289DA; /* Discord's brand color */
}
.footer {
background-image: linear-gradient(to right, #000000, #1a1a1a); /* Black gradient for footer */
width: 100%;
padding: 20px 0;
}
.footer-text {
color: #ffffff; /* White text for contrast */
}
/* Add styles for small button */
.small-button {
display: inline-block;
padding: 10px 20px;
background-color: #7289DA; /* Discord's brand color */
color: #ffffff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
margin-top: 10px;
}
.small-button:hover {
background-color: #546e99; /* Darker shade of Discord's brand color */
}