-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
128 lines (128 loc) · 2.22 KB
/
styles.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
background-color: #FED403 ;
margin: 0px;
}
nav{
width: 100%;
}
footer {
background-color: goldenrod;
border: black solid 1px;
height: 100px;
text-align: center;
}
h2 {
text-align: center;
}
h1 {
color: black;
text-align: center;
font-size: 50px;
font-weight: bold;
}
p {
text-align: center;
display: inline-block;
padding-left: 30%;
padding-right: 30%;
}
ul {
display: flex;
position: relative;
justify-content: center;
background-color: goldenrod;
align-items: center;
border-radius: 30px;
padding-right: 5%;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}
ul li {
list-style: none;
}
ul li a {
position: relative;
color: #fff;
text-decoration: none;
display: inline-block;
padding: 30px 30px;
backdrop-filter: blur(15px);
}
ul li a .fa {
font-size: 2.5em;
pointer-events: none;
opacity: 0.25;
transition: 0.25s;
}
ul li:hover a .fa {
opacity: 1;
}
ul li.page-actuelle a .fa {
opacity: 1;
}
.ligne {
text-align: center;
display: block;
}
.personnage {
display: inline-block;
background-color: white;
border: solid 1px black;
border-radius: 5px;
padding-bottom: 10px;
margin: 50px;
}
.titre {
text-align: left;
text-indent: 5px;
text-decoration: underline;
font-weight: bold;
}
.def {
text-align: left;
text-indent: 10px;
}
.avis {
display: flex;
text-align: center;
}
.auteur {
text-align: center;
}
.auteur p {
text-decoration: underline;
font-weight: bold;
}
hr {
height:2px;
background-color:black;
}
.critiques {
display: block;
}
.persos-image {
margin-top: 7px;
display: inline-block;
border: solid 1px black;
border-radius: 5px;
}
.logo {
margin-left: 40%;
margin-bottom: 20px;
}
.logo img {
border-radius: 3px;
border: black solid 1px;
}
header div {
display: flex;
}
header div a {
margin-top: 25px;
scale: 0.8;
height: 50px;
margin-right: 10px;
}
header div a:hover {
transform: scale(1.1);
transition: all 0.2s ease-in-out;
}