-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (93 loc) · 1.68 KB
/
style.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
.card{
background-color: #fff;
width: 10%;
height: 20%;
}
.list-ville{
display: flex;
justify-content: center;
align-items: center;
/* margin-bottom: 10px; */
}
#select-ville{
background: none;
color: rgb(76, 76, 76);
border-radius: 50px;
padding: 5px;
width: 100px;
background-color: #39cdfa;
}
.name-city{
margin-right: 100px;
font-family: 'Marhey', cursive;
font-size: 30px;
}
#name-ville{
color: rgba(255, 195, 195, 0.577);
}
#name-ville:hover{
color: white ;
}
#date{
font-size: 15px;
color: rgba(246, 255, 122, 0.873);
}
.date-jour{
font-family: 'Gulzar', serif;
font-size: 15px;
}
.salate{
background-color: #5ebff88f;
color: rgba(0, 76, 255, 0.697);
font-family: 'Courier New', Courier, monospace;
padding: 4px;
text-align: center;
}
.horaire{
display: flex;
font-size: 20px;
font-family: 'Marhey', serif;
justify-content: center;
align-items: center;
height: 70%;
color: black;
}
.all-salate{
height: 400px;
margin-top: 60px;
display: flex;
justify-content: space-around ;
}
.all-page{
margin-top: 0px;
}
.info-header{
margin-top: 40px;
}
body{
margin: 0;
padding: 0;
box-sizing: border-box;
background:linear-gradient(45deg,#013865,rgb(45, 45, 45));
color: white;
/* height: 100vh; */
}
h1, h2,h3, h4, h5, h6{
margin: 0px;
}
@media screen and (max-width: 600px) {
.card{
width: 100%;
height: 100px;
}
body{
height: 900px;
}
.all-salate{
height: 400px;
margin-top: 60px;
display: grid;
row-gap: 19px;
place-items: center;
}
}