-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaster.css
More file actions
184 lines (182 loc) · 3.29 KB
/
Copy pathmaster.css
File metadata and controls
184 lines (182 loc) · 3.29 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url(./Maquette2/img/fond.png);
font-family: "Poppins" serif;
}
/* Start header */
header {
margin: 60px 0 40px;
background-color: #34b1b2;
border-top: 5px solid #2b9aa0;
border-bottom: 5px solid #2b9aa0;
text-align: center;
}
header img {
width: 11em;
}
header ul li {
display: inline-block;
padding: 15px;
}
header ul li a {
text-decoration: none;
font-size: 1.2em;
color: #dbf2f2;
text-transform: capitalize;
}
/* End header */
/* Start main */
main article {
width: 40%;
margin: 30px auto;
text-align: center;
}
main article h2 {
text-transform: capitalize;
margin-bottom: 30px;
color: #454a54;
font-size: 2em;
font-weight: inherit;
}
main article p {
color: #5f7d81;
line-height: 1.5;
font-size: 1em;
margin-bottom: 15px;
}
/* End main */
/* Start section */
section {
width: 60%;
/* height: 800px; */
margin: 20px auto;
/* background-color: white; */
}
section .second-article {
float: left;
width: 67%;
background-color: #b6dedc;
padding: 0 30px;
margin-bottom: 30px;
padding-bottom: 50px;
}
section .second-article h2 {
font-size: 2em;
margin: 30px auto;
text-align: center;
color: #454a54;
text-transform: capitalize;
}
section .second-article h2 span {
color: #2b9aa0;
}
section .second-article .box h4 {
color: #4b535c;
font-size: 1.3em;
text-align: center;
text-transform: capitalize;
margin-bottom: 5px;
}
section .second-article .box img {
width: 100px;
width: 100px;
border: none;
border-radius: 50%;
float: left;
margin-right: 10px;
}
section .second-article .box p {
color: #606c73;
line-height: 1.5;
font-size: 1em;
margin-bottom: 15px;
}
section .second-article .box button {
padding: 8px 20px;
background-color: #2b9aa0;
color: white;
border: none;
float: right;
}
section .content .box.first {
float: left;
width: 45%;
}
section .second-article .box.second {
float: right;
width: 45%;
}
section aside {
position: relative;
float: right;
width: 30%;
background-color: #34b1b2;
height: 700px;
border: 5px solid #2b9aa0;
padding: 0 20px;
}
section aside .vignette {
position: absolute;
background-image: url("./Maquette2/img/vignette.png");
background-repeat: no-repeat;
top: -50px;
right: -60px;
width: 150px;
height: 150px;
transition: 0.3s;
}
section aside .vignette:hover {
transform: rotate(360deg) scale(1.2, 1.2);
}
/* section aside::after {
content: "";
position: absolute;
background-image: url("./Maquette2/img/vignette.png");
background-repeat: no-repeat;
top: -50px;
right: -160px;
width: 100%;
height: 100%;
} */
section aside:hover::after {
/* transform: rotate(10deg); */
/* transform: scale(1.5); */
}
section aside h5 {
margin-top: 30px;
font-size: 1.3em;
color: #dbf2f2;
}
section aside h5 > span {
color: #9ed5d4;
}
section aside ul li {
margin: 20px 0;
}
section aside ul li > span {
color: #9ed5d4;
font-size: 1em;
margin-bottom: 10px;
}
section aside ul li p {
color: #dbf2f2;
font-size: 0.95em;
line-height: 1.5;
}
footer {
text-align: center;
clear: both;
}
footer img {
width: 50px;
}
footer p {
width: 80%;
margin: 0 auto 20px;
}
/* End section */