This repository was archived by the owner on Dec 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathwip.css
More file actions
100 lines (99 loc) · 1.95 KB
/
wip.css
File metadata and controls
100 lines (99 loc) · 1.95 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
@font-face {
font-family: 'parisine-std';
src: url("/assets/fonts/Parisine-Regular.otf");
font-display: swap;
font-weight: normal;
}
@font-face {
font-family: 'parisine-std';
src: url("/assets/fonts/Parisine-Bold.otf");
font-display: swap;
font-weight: bold;
}
@font-face {
font-family: 'parisine-std';
src: url("/assets/fonts/Parisine-Italic.otf");
font-display: swap;
font-style: italic;
}
@font-face {
font-family: 'parisine-std';
src: url("/assets/fonts/Parisine-BoldItalic.otf");
font-display: swap;
font-weight: bold;
font-style: italic;
}
body {
background-color: #1e1e1e !important;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
margin: 0;
font-family: "parisine-std", sans-serif;
}
.container {
max-width: 600px;
padding: 20px;
margin: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
}
h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
p {
font-size: 1.2em;
opacity: 0.8;
}
.integrated img {
height: 1em;
width: 1em;
vertical-align: middle;
position: relative;
top: -0.1em;
}
.buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.button {
display: flex; /* Permet d'aligner les éléments */
align-items: center; /* Centre verticalement */
gap: 8px; /* Ajoute un espace entre l'icône et le texte */
text-decoration: none;
font-size: 16px;
font-weight: bold;
color: white;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.github {
background-color: black;
}
.github:hover {
background-color: #333;
transform: scale(1.1);
}
.discord {
background-color: #5865F2;
}
.discord:hover {
background-color: #4752c4;
transform: scale(1.1);
}
.home {
background-color: #0a0082;
}
.home:hover {
background-color: #090068;
transform: scale(1.1);
}