This repository was archived by the owner on Oct 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
170 lines (154 loc) · 2.88 KB
/
Copy pathstyles.css
File metadata and controls
170 lines (154 loc) · 2.88 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
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
163
164
165
166
167
168
169
170
/* Main Website */
body {
background-color: #1E135B; /* Dark purple-blue background */
font-family: 'Roboto', sans-serif;
color: #D8E6F7; /* Soft light blue text */
margin: 0;
padding: 0;
}
section {
margin-bottom: 60px;
padding: 20px;
}
h1, h2 {
color: #647FD4; /* Bright blue for headings */
font-family: 'Yanone Kaffeesatz', sans-serif;
text-align: center;
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
h2 {
font-size: 28px;
margin-bottom: 20px;
}
h3 {
color: #839FFF; /* Lighter blue for subheadings */
font-family: 'Yanone Kaffeesatz', sans-serif;
text-align: center;
font-size: 22px;
margin-bottom: 10px;
}
h4, p {
color: #CBD6F0; /* Softer blue for text */
font-size: 16px;
line-height: 1.6;
text-align: center;
margin: 10px 0;
}
.center {
text-align: center;
display: block;
margin-left: auto;
margin-right: auto;
}
img.logo {
width: 200px;
height: 200px;
margin-top: 20px;
}
/* Columns */
.column {
float: left;
width: 33.33%;
padding: 10px;
box-sizing: border-box;
}
.row:after {
content: "";
display: table;
clear: both;
}
.column2 {
float: left;
width: 50%;
padding: 10px;
box-sizing: border-box;
}
/* Links */
a {
text-decoration: none;
color: #87CEEB; /* Sky blue links */
width: max-content;
margin: 0 auto;
}
a:hover {
color: #5393D1; /* Slightly darker blue hover effect */
}
/* Game */
#actual-games {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
div.game {
position: relative;
padding: 20px;
border: 1px solid #574B9E; /* Deep blue border */
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
background-color: #281A69; /* Very dark blue-purple background */
}
.game {
border: 1px solid #ddd;
padding: 10px;
text-align: center;
}
.game img {
max-width: 100%;
height: auto;
}
a.os {
font-size: 16px;
color: #87CEEB; /* Sky blue */
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #1D0E4E; /* Dark purple for the navbar */
color: #fff;
padding: 15px 30px;
}
nav a {
color: #fff;
text-decoration: none;
}
.social {
font-size: 18px;
}
.team-social {
font-size: 28px;
}
.left-menu {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
.left-menu li {
margin-right: 20px;
}
.right-menu {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
.right-menu li {
margin-left: 20px;
}
/* Footer */
footer {
background-color: #1D0E4E; /* Matching dark purple for footer */
padding: 20px 0;
text-align: center;
color: #D8E6F7; /* Light blue text */
font-size: 14px;
}
footer a {
color: #D8E6F7;
text-decoration: underline;
}