-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
177 lines (154 loc) · 2.44 KB
/
style.css
File metadata and controls
177 lines (154 loc) · 2.44 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
*::-moz-selection{
background: tomato;
}
*::selection{
background: tomato;
}
p{
margin: 0;
font-family: 'Alegreya Sans', sans-serif;
font-size: 18px;
}
a{
text-decoration: none;
color: tomato;
font-style: italic;
font-family: sans-serif;
}
h2{
margin: 0;
}
#conteneur{
width: 1000px;
margin: 0 auto;
box-shadow: 1px 1px 4px #c2c2c2;
}
header{
height: 100px;
/* background: #4080af; */
}
.clear{
clear: left;
}
.haut_gauche{
float: left;
/* background: #00ffaa; */
width: 100px;
height: 100px;
}
.haut_gauche img{
margin: 7px 0 0 13px;
}
.haut_milieu{
float: left;
/* background: #aaff44; */
width: 800px;
height: 100px;
}
.haut_milieu h1{
text-align: center;
margin: 38px 0 0 0;/*haut droite bas gauche*/
font-style: italic;
letter-spacing: -1px;/*Espacement entre les lettres*/
font-family: sans-serif;
}
.haut_droit{
float: left;
/* background: #888; */
width: 100px;
height: 100px;
}
.haut_droit img{
margin: 10px 0 0 50px;
}
nav{
height: 36px;
background: #70ac20 url(img/menu_off.png);
}
nav a{
color: #fff;
/* display: block; */
float: left;
height: 36px;
line-height: 36px;
padding: 0 20px;
}
.ici{
background: #70ac20 url(img/menu_on.png);
}
nav a:hover{
background: #70ac20 url(img/menu_on.png);
}
section{
/* overflow: hidden; */
/* background: tomato; */
}
/********** accueil **********/
.mondiaporama{
height: 260px;
/* background: #66ff6f; */
}
.contenu_gauche{
/* background: yellow; */
float: left;
width: 460px;
padding: 20px;
}
.contenu_droit{
/* background: blue; */
float: left;
width: 460px;
padding: 20px;
}
section h2{
margin: 0 0 5px 0;
color: tomato;
letter-spacing: -2px;
font-style: italic;
font-family: sans-serif;
}
/*section img{*/
.contenu_gauche img, .contenu_droit img {
float: left;
margin: 0 5px 0 0;
}
/********************* MES PROJETS ********************/
.mesprojets_zone_du_bas, .mesprojets_zone_du_haut{
padding: 20px;
}
.mesprojets_zone_du_bas img{
margin: 10px 20px;
box-shadow: 1px 1px 5px #c2c2c2;
}
/*** mon cv ***/
/********************* CONTACT ***********************/
#contact{
padding: 30px;
}
label{
float: left;
width: 80px;
}
input[type="text"],input[type="email"]{
padding: 5px;
width: 220px;
}
textarea{
padding: 5px;
resize: vertical; /*none*/
width: 220px;
}
footer{
height: 80px;
background: #383838;
text-align: center;
padding: 30px 0 0 0;
color: #fff;
}
footer p{
color: #fff;
}
footer a{
color: tomato;
font-style: italic;
}