-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (88 loc) · 1.6 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (88 loc) · 1.6 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
* {
font-family: "Supreme", sans-serif;
margin: 0;
padding: 0;
color: #fff;
}
body {
background-color: gray;
}
main {
position: relative;
opacity: 0;
transition: opacity 2s ease-in-out, filter 2s ease-in-out;
filter: blur(10px);
}
header {
margin-top: 1em;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
img {
width: 6em;
height: 6em;
border-radius: 100%;
border: 1px solid #000;
box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
}
header > h1 {
display: inline-block;
font-size: 0.8em;
font-weight: bold;
border-radius: 1em;
background-color: #000a;
color: #fff;
padding: 0.3em 0.6em;
border: 1px solid #fffa;
margin-top: 0.5rem;
backdrop-filter: blur (15px) saturate (160%) contrast(180%);
-webkit-backdrop-filter: blur (15px) saturate (160%) contrast(180%);
}
ul {
box-sizing: border-box;
list-style: none;
margin: 0 auto;
padding: 2em;
max-width: 480px;
}
ul > li {
background-color: #fffa;
backdrop-filter: blur (15px) saturate (160%) contrast(180%);
-webkit-backdrop-filter: blur (15px) saturate (160%) contrast(180%);
border-radius: 10em;
padding: 1em;
margin: 1.4em 0;
box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
}
.icon1 {
color: #c4302b;
}
.icon2 {
color: #ea4c89;
}
.icon3 {
color: #000;
}
ul > li > a {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 0.5em;
font-weight: bold;
}
a {
color: black;
text-decoration: none;
}
#venta {
z-index: -9999;
position: absolute;
left: 0;
right: 0;
top: 0;
width: 100%;
height: 100%;
}