forked from DelahayeAdrienSrc1c1/TP3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
143 lines (129 loc) · 2.18 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
body
{
padding: 0;
margin: 0 ;
background-image: url('ronds.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover ;
background-position:center;
}
#container
{
padding: 0;
margin: 0 ;
# background: #fff;
font-family: sans-serif;
}
#header
{
margin: 0;
padding: 20px;
background: #ccc;
height:50px;
background-image: url('haut.jpg');
background-repeat: no-repeat;
background-size: cover ;
background-position:center;
}
#header h1 { margin: 0; }
#navigation
{
float: left;
width: 100%;
background: #333;
}
#navigation ul
{
margin: 0;
padding: 0;
}
#navigation ul li
{
list-style-type: none;
display: inline;
}
#navigation li a
{
display: block;
float: left;
padding: 5px 10px;
color: #fff;
text-decoration: none;
border-right: 1px solid #fff;
}
#navigation li a:hover { background: #383; }
#edito
{
height: 400px;
float: left;
padding: 0%;
margin: 1%;
width: 64%;
background-color: #f4fcff;
border: 1px solid #999999;
-webkit-border-radius: 25px 0px 25px 0px;
border-radius: 25px 0px;
-webkit-box-shadow: 5px 3px 3px #0a182e;
box-shadow: 5px 3px 3px #0a182e;
opacity: 0.8;
}
#edito h2
{
color: #000;
font-size: 160%;
margin: 0 0 .5em;
}
div.element
{
float: left;
width: 31%;
min-width: 400px;
height: 400px;
overflow-y: scroll;
margin: 1%;
padding: 0%;
background-color: #f4fcff;
border: 1px solid #999999;
-webkit-border-radius: 25px 0px 25px 0px;
border-radius: 25px 0px;
-webkit-box-shadow: 5px 3px 3px #0a182e;
box-shadow: 5px 3px 3px #0a182e;
opacity: 0.8;
}
div.element img
{
background-color : #fff;
float: right;
width: 40%;
margin: 5%;
border: 1px solid #000;
padding: 5px 5px 20px 5px;
transform:rotate(7deg);
-ms-transform:rotate(7deg); /* IE 9 */
-moz-transform:rotate(7deg); /* Firefox */
-webkit-transform:rotate(7deg); /* Safari and Chrome */
-o-transform:rotate(7deg); /* Opera */
}
p
{
margin: 20px;
text-align: justify;
}
h2,h3
{
text-align: center;
}
#footer
{
clear: both;
background: #ccc;
text-align: left;
font-weight: bold;
padding: 20px;
height: 1%;
background-image: url('bas.jpg');
background-repeat: no-repeat;
background-size: cover ;
background-position:center;
}