forked from DedrieValentin/TP3
-
Notifications
You must be signed in to change notification settings - Fork 12
/
style_historique.css
159 lines (137 loc) · 2.12 KB
/
style_historique.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
p {
font-size: 13pt;
}
body
{
padding: 0;
margin: 0 ;
font-family: Arial, sans-serif;
}
#container
{
padding: 0;
margin: 0 ;
background: #C3D09D;
font-family: sans-serif;
}
#header
{
margin: 0;
padding: 20px;
background: #80924B;
height:50px;
border: 1px solid black;
text-align: center;
font-size: 26pt;
}
#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: #F5F9EC;
border: 1px solid #999999;
-webkit-border-radius: 25px 0px 25px 0px;
border-radius: 25px 0px;
-webkit-box-shadow: 2px 3px 3px #0a182e;
box-shadow: 2px 3px 3px #0a182e;
opacity: 0.8;
}
#edito h2
{
color: #000;
font-size: 18pt;
margin: 0 0 .5em;
}
div.element
{
float: left;
width: 31%;
min-width: 400px;
height: 400px;
margin: 1%;
padding: 0%;
background-color: #F5F9EC;
border: 1px solid #999999;
-webkit-border-radius: 25px 0px 25px 0px;
border-radius: 25px 0px;
-webkit-box-shadow: 5px 3px 3px #0a182e;
box-shadow: 2px 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;
font-size: 18pt;
}
#footer
{
clear: both;
background: #80924B;
text-align: left;
font-weight: bold;
padding: 20px;
height: 1%;
border: 1px solid black;
}
a {
text-decoration: none;
}
a:link {
color : #80924B;
}
a:visited {
color : #A0B06F;
t
}
a:hover : {
color : #5A692A;
}