-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcongrats.css
More file actions
93 lines (82 loc) · 1.56 KB
/
Copy pathcongrats.css
File metadata and controls
93 lines (82 loc) · 1.56 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
* {
z-index: 100;
}
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: center;
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);
z-index: 10;
}
header {
display: flex;
flex-direction: column;
margin-top: 2rem;
margin-left: 10rem;
margin-right: 10rem;
text-align: center;
flex-basis: 30%;
justify-content: center;
align-items: center;
z-index: 150;
}
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;
line-height: 2;
}
.bottom-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
gap: 25%;
width: 100%;
max-height: 70%;
flex-basis: 70%;
z-index: 50;
}
.bottom-container * {
height: 70%;
}
.tableau {
transform: rotate(5deg);
}
.carte {
transform: rotate(-5deg);
}