-
Notifications
You must be signed in to change notification settings - Fork 0
/
langue.css
62 lines (53 loc) · 1.19 KB
/
langue.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
a:nth-child(6){
border-bottom: 3px solid white;
}
section{
margin: 5%;
margin-top: 100px;
}
section .division{
display: flex;
}
.elem{
margin: 10%;
margin-left: 4%;
margin-right: 4%;
border-style: outset;
padding-left: 10%;
padding-right: 10%;
padding-top: 5%;
padding-bottom: 10%;
font-size: 500%;
color: black;
-webkit-filter: grayscale(100%);
transition-property: -webkit-filter, background, color;
transition-duration: 1200ms;
}
.elem:hover{
-webkit-filter: grayscale(0%);
background: linear-gradient(to right,orange, purple);
color: whitesmoke;
}
@media screen and (max-width: 1200px) {
a:nth-child(6){
background-color: rgba(200, 100, 0, 0.8);
border-bottom : none;
}
a:nth-child(6):hover {
background-color: rgba(255, 255, 255, 0.6);
color: rgb(100, 50, 0);
border-bottom : none;
}
.elem{
margin-left: 5%;
margin-right: 5%;
}
section .division{
flex-direction: column;
}
}
@media screen and (max-width: 720px) {
.elem{
padding-bottom: 15%;
}
}