-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (114 loc) · 2.02 KB
/
style.css
File metadata and controls
122 lines (114 loc) · 2.02 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
/*
#04BBFF
#0594D0
#007198
#003C57
#051C24
*/
/* On defini notre police */
body{
margin: auto;
font-family: 'Roboto', sans-serif;
background: #1a1a1a;
height: 200vh;
color : white;
}
.entete{
background-color: #003C57;
color: #04BBFF;
font-size: 1.5em;
font-weight: bold;
padding: 0.5em;
text-align: center;
margin: auto;
}
/* MENU */
.menu{
display: flex;
justify-content: flex-end;
flex-direction: column;
background-color: #007198;
font-size : 1.5em;
position: fixed;
height: 100%;
width: 300px;
}
/* les items dans le menu */
.menu .items{
color: #051C24;
font-weight: bold;
text-decoration: none;
padding: 0.5em;
margin: 0.5em;
}
.menu .items:hover{
background-color: #051C24;
color : #007198;
transition: background-color 0.7s;
}
/* Partie de droite */
.corp{
margin-left: 300px;
}
.main{
padding: 0.5em;
width: 98%;
height:auto;
position:relative;
display: flex;
justify-content: center;
flex-direction: column;
}
.form{
display: flex;
flex-direction: column;
width: 75%;
}
.form .txt{
margin: 0.5em;
font-size: 1.5em;
}
.form .input{
margin: 0.5em;
padding: 0.5em;
border-radius: 10px;
border: 1px solid #051C24;
}
.form .items{
font-size: 1.5em;
}
.form .button{
margin: 0.25em;
padding: 0.25em;
border-radius: 10px;
background-color: #051C24;
color: #007198;
font-size: 1.5em;
font-weight: bold;
transition: background-color 0.7s;
}
.form .button:hover{
background-color: #007198;
color: #051C24;
transition: background-color 0.7s;
}
/* keyframe gauche vers la droite */
@keyframes gauche_droite{
0%{
transform: translateX(-100%);
}
100%{
transform: translateX(0%);
}
}
/* keyframe haut vers bas plus opacité */
@keyframes haut_bas{
0%{
transform: translateY(-100%);
opacity: 0;
}
100%{
transform: translateY(0%);
opacity: 1;
}
}