-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
116 lines (104 loc) · 2.28 KB
/
Copy pathindex.css
File metadata and controls
116 lines (104 loc) · 2.28 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
body, html {
height: 100%;
width: 100%;
overflow: hidden;
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #A9CBFF, #8087F3) no-repeat center center fixed;
font-family: "Roboto", sans-serif;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 100%;
width: 100%;
flex-basis: 100%;
}
.sun {
position: absolute;
top: 0;
left: 0;
width: 150px;
height: 150px;
background: linear-gradient(to bottom, #FFEA00, #ffc400);
border-radius: 0 0 100% 0;
}
.grass {
position: absolute;
bottom: 0;
left: -25%;
width: 150%;
height: 256px;
border-radius: 100% 100% 0 0;
background: linear-gradient(to bottom, #5DE65E, #5CEA5B);
}
header {
display: flex;
flex-direction: column;
margin-top: 2rem;
margin-left: 10rem;
margin-right: 10rem;
text-align: center;
flex-basis: 50%;
justify-content: center;
align-items: center;
}
header h1 {
font-size: 3rem;
color: #fff;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
header p {
font-size: 1.5rem;
color: #000;
}
.play-button {
background: linear-gradient(to right, #5cd957, #5CEA5B);
width: fit-content;
font-size: 1.5rem;
padding: 1rem 2rem;
border-radius: 500px;
text-decoration: none;
color: #000;
transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
z-index: 100;
}
.play-button:hover {
background: linear-gradient(to right, #5cd957, #5CEA5B);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
transform: scale(1.05);
}
.bottom-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
gap: 25%;
width: 100%;
flex-basis: 50%;
z-index: 50;
}
.bottom-container * {
width: 100%;
height: auto;
max-width: 400px;
max-height: 400px;
}
.carte-container {
position: relative;
font-family: "Bradley Hand", cursive;
}
.carte-container::after {
content: "Il est sur la Sainte-Victoire !";
position: absolute;
bottom: 8%;
left: 50%;
width: 100%;
transform: translateX(-50%) rotate(-4.15deg);
display: flex;
justify-content: center;
align-items: flex-end;
font-size: 1.5rem;
}