-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcustom.css
105 lines (69 loc) · 1.39 KB
/
custom.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
/* début CSS jorge*/
header {
display:flex;
background-color: black;
height: 200px;
justify-content: space-between;
}
.logo {
display: flex;
justify-content: center;
}
.logo img {
height: 150px;
}
.toplinks a {
display: flex;
justify-content: space-evenly;
margin: 20px;
color:white;
text-decoration: none;
background-color: rgb(214, 65, 19);
padding: 4px 10px;
border-radius: 30px;
font-size: 15px;
}
/* fin CSS jorge*/
/* debut CSS lucas*/
/* css de la premiere section avec le texte */
#section1 {
height: 300px;
width:100%;
display: flex;
justify-content: space-around;
background-color: rgb(214, 65, 19);
color:rgb(255, 255, 255);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
align-items: center;
}
/* je sépare la section en 2 avec les 2 div*/
.div1 {
margin:center;
font-weight: bold;
}
.div2 {
align-self: flex-end;
}
/* mise en liens et en ligne de mon texte */
#section1 .links {
display: flex;
justify-content: space-evenly;
color: rgb(255, 255, 255);
}
#section1 .links a{
background-color: rgb(70, 64, 64);
color: rgb(189, 189, 189);
margin: 10px;
border-radius: 30px;
padding: 15px;
}
h1 {
font-size: 50px;
text-decoration: underline;
}
.div1 img {
margin-left: 28%;
margin-right: -10%;
margin-top: 40px;
}
/* fin CSS lucas */