-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (79 loc) · 1.57 KB
/
style.css
File metadata and controls
92 lines (79 loc) · 1.57 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
body {
background-image: url('Baldwin_RP.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: #fff; /* Couleur de secours si l'image ne charge pas */
margin: 0;
font-family: 'Segoe UI', sans-serif;
background-color: #0f0f0f;
color: white;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #1a1a1a;
padding: 15px 30px;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}
.logo {
font-size: 1.8em;
font-weight: bold;
color: #ff7700;
text-shadow: 0 0 5px rgba(255, 119, 0, 0.5);
}
.nav-links {
display: flex;
gap: 20px;
}
.nav-links a {
color: white;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
.nav-links a:hover {
color: #ff7700;
}
main {
padding: 60px 20px;
max-width: 1000px;
margin: auto;
}
.btn-discord,
.btn-steam {
display: inline-block;
margin: 15px 10px 0;
padding: 15px 30px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
font-size: 1.1em;
transition: background 0.3s, transform 0.2s;
color: white;
border: none;
}
.btn-discord {
background-color: #5865F2;
}
.btn-discord:hover {
background-color: #4752c4;
transform: scale(1.05);
}
.btn-steam {
background-color: #171A21;
}
.btn-steam:hover {
background-color: #2a2d32;
transform: scale(1.05);
}
footer {
text-align: center;
padding: 20px;
font-size: 0.9em;
color: #ccc;
}