forked from clementAC/19-20_TWOIng4_TP1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
112 lines (91 loc) · 1.38 KB
/
style2.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
@-webkit-keyframes monanimation {
0% {
transform: translateX(0px);
}
95% {
transform: translateX(300px);
}
100% {
transform: translateX(0px);
}
}
@keyframes monanimation {
0% {
transform: translateX(0px);
}
95% {
transform: translateX(300px);
}
100% {
transform: translateX(0px);
}
}
div:hover
{
-webkit-animation: monanimation 30s;
animation: monanimation 30s;
}
p {
font-size: 1em;
line-height: 1.4em;
margin-bottom: 20px;
color: black;
}
h1 {
font-size: 2.5em;
font-weight: 700;
margin-bottom: -6px;
color : black;
}
h2 {
font-size: 2em;
margin-left: 2px;
}
h3 {
font-size: 1,5em;
margin-left: 2px;
color : blue;
}
h4 {
font-size: 1em;
margin-left: 2px;
color : red;
}
ul {
margin-left: 30px;
}
#cv {
width: 100%;
max-width: 800px;
background-color: beige;
margin: 30px auto;
}
#menu {
margin-left: 50px;
}
#menu h3 {
font-size: 1,5em;
color : black;
}
#partie {
margin-left: 100px;
}
#partie h2{
font-size: 2em;
margin-left: 2px;
color: purple;
}
#gauche {
width:10em;
height:10em;
display:inline-block;
margin-left: 2em;
margin-top: 2em;
}
#droite {
width:17em;
margin-left:20em ;
margin-top: 2em;
display:inline-block;
vertical-align:top;
}