-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
103 lines (87 loc) · 1.72 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
96
97
98
99
100
101
102
103
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Barlow&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #212121;
font-family: "Barlow", sans-serif;
font-weight: 800;
min-width: 1670px;
}
body .gen {
margin: 30px;
}
h1 {
font-family: "Montserrat", sans-serif;
font-weight: 800;
}
.gen {
width: 1580px;
background-color: #1f1a1acc;
border: 2px solid #000;
margin: 0 auto;
border-radius: 20px;
-webkit-backdrop-filter: blur(100px);
backdrop-filter: blur(100px);
}
.gen .genImage {
width: 90px;
height: auto;
margin: 10px 20px 30px 30px;
cursor: pointer;
}
.gen .pokemonContainer {
position: relative;
}
.gen .sparkles {
position: absolute;
width: 30px;
right: 0;
translate: -10px 20px;
cursor: pointer;
}
.gen .sparkles:hover {
opacity: 0.5;
}
.genTitle {
color: #fafffd;
background-color: #111;
width: max-content;
padding: 10px;
font-size: 28px;
border-radius: 18px 0 18px 0;
cursor: pointer;
}
.logo {
margin-left: 30px;
margin-top: 20px;
}
ul li {
color: #fafffd;
font-weight: lighter;
margin-top: 10px;
margin-left: 60px;
list-style-type: circle;
}
.south::before {
content: "S";
padding: 4px 10px;
background-image: linear-gradient(to right, #4e5de6, #6b8bdd);
}
.north::before {
content: "N";
padding: 4px 9px;
background-image: linear-gradient(to right, #e64e83, #dd706b);
}
.north::before,
.south::before {
position: absolute;
font-size: 20px;
color: white;
border: 2px solid #111;
border-radius: 50%;
translate: 16px 16px;
z-index: 2;
}