-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommun.css
More file actions
127 lines (106 loc) · 2.27 KB
/
Copy pathcommun.css
File metadata and controls
127 lines (106 loc) · 2.27 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
123
124
125
126
127
html, body{
height: 100%;
margin:0;
background-color: rgb(219, 219, 219);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header {
width: 100%;
height: 50px;
background-color: white;
border-bottom: 1px solid gray;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.075);
display: flex;
justify-content: center;
align-items: center;
}
h1 {
width: 50%;
text-align: center;
font-size: 28px;
color: rgb(60, 60, 60);
margin: 0;
}
nav {
width: 70%;
}
nav a {
margin: 0 10px;
padding: 10px 5px;
text-decoration: none;
color: rgb(40, 40, 39);
}
main {
height: calc(100% - 50px);
overflow-y: scroll;
}
.lien {
color: white;
background: linear-gradient(45deg, red, blue);
padding: 20px;
border-radius: 20px;
text-decoration: none;
text-transform: uppercase;
transition: 0.2s;
}
.lien:hover {
background: rgb(245, 245, 245);
color: rgb(40, 40, 39);
}
.exempleRealisation {
width: 300px;
height: 400px;
border: 1px solid rgb(231, 231, 231);
margin: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
border-radius: 5px;
}
.exempleRealisation div {
height: 200px;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.er1 {
background-image: url("image/Capture\ d\'écran_20230227_075811.JPG");
}
.er2 {
background-image: url("image/frerebob.JPG");
}
.er3 {
background-image: url("image/doute.JPG");
}
.er4 {
background-image: url("image/bob.JPG");
}
.er5 {
background-image: url("image/bob_logo.JPG");
}
.er6 {
background-image: url("image/bobfoot.JPG");
}
.er7 {
background-image: url("image/mbappe.JPG");
}
.er8 {
background-image: url("image/brigitte.JPG");
}
.er9 {
background-image: url("image/jack.JPG");
}
.exempleRealisation h3 {
margin: 0;
margin-top: 20px;
margin-left: 15px;
font-size: 24px;
color: rgb(40, 40, 39);
}
.exempleRealisation p {
margin: 0;
margin-top: 5px;
margin-left: 15px;
font-size: 14px;
color: rgb(40, 40, 39);
}