-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (137 loc) · 2.26 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
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
@import url('https://fonts.googleapis.com/css?family=Raleway');
html,h1,h2,h3,h4,h5,h6,a{
font-family: "Raleway";
}
body{
background-color: gainsboro;
}
#sub_header{
left: 50%;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 15px;
background-color: orange;
color: #fff;
height: 70px;
}
header a{
text-decoration: none;
color: #fff;
}
header a:hover{
color: green;
}
nav ul{
list-style-type: none;
}
nav ul li{
float: left;
margin-right: 15px;
}
nav ul li a{
text-decoration: none;
color: #fff;
}
/* banniere */
.banniere{
background-image: url('images/headerback.jpg');
background-size: cover;
height: 90vh;
}
.entete{
width: 70%;
margin: auto;
align-items: center;
padding-top: 120px;
}
.entete h1{
color: orange;
text-transform: capitalize;
}
.entete .bouton a{
text-decoration: none;
color: #fff;
background-color: orange;
padding: 10px 15px;
border-radius: 5px;
}
/* H1 */
h1{
text-align: center;
text-transform: capitalize;
margin: 50px 0px;
color: orange;
}
/* section about */
.cadre1{
border-right: 2px solid green;
}
.cadre1 img{
border-radius: 150px;
width: 150px;
height: 150px;
display: block;
float: right;
}
.cadre1 .cadre1_nom{
float:right;
clear: both;
margin-right: 30px;
margin-top: 10px;
}
.cadre2{
padding-top: 10px;
}
.cadre2 h4{
color: green;
}
.cadre2 .cadre2_text{
width: 550px;
}
/* section portfolio */
.image_folio{
width: 60%;
margin: auto;
}
.image_folio img{
margin-left: 20px;
margin-bottom: 20px;
}
/* section blog */
.image_blog{
display: flex;
justify-content: center;
align-items: center;
}
.image_blog .card{
margin-right: 20px;
}
/* section team */
.image_team{
display: flex;
justify-content: center;
align-items: center;
}
.image_team .team1{
margin-right: 20px;
}
.image_team .team1 .team1_name{
text-align: center;
border-radius: 0px 0px 0px 50px;
background-color: orange;
color: #fff;
}
/* section contact */
.contact{
width: 80%;
margin: auto;
padding: 150px;
}
.contact .icone{
color: orange;
text-align: center;
margin-top: -30px;
}