-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (76 loc) · 1.32 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
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Tilt Neon', sans-serif;
margin: 0;
padding: 0;
}
#titre_principale{
font-family: 'VT323', monospace;
color: rgb(0, 255, 255);
margin: 20px;
text-align: center;
}
#profile_pic {
border-radius: 50%;
}
header {
background-color: #000000;
color: #fff;
padding: 10px 0;
}
.about, .portfolio {
padding: 30px 0;
text-align: center;
}
.hero {
background-color: #f4f4f4;
text-align: center;
padding: 50px 0;
}
.titres{
font-family: 'Young Serif', serif;
}
footer {
background-color: #000000;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
display: flex;
}
#copyright {
color: #fff;
padding-left: 10px;
text-align: left;
}
#opensource {
color: white;
text-align: right;
text-decoration: none;
position: absolute;
right: 10px;
}
#opensource:hover {
color: aqua;
}
.reseaux {
color: #000000;
padding: 10px;
}
.reseaux:hover {
color: rgb(0, 110, 255);
}
.spoiler {
color: black;
background-color: black;
}
.spoiler:hover {
background-color:white;
}