tangled
alpha
login
or
join now
vielle.dev
/
site
0
fork
atom
Personal Site
0
fork
atom
overview
issues
pulls
pipelines
Add proper styles to landing
vielle.dev
7 months ago
ba155992
809c2c14
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
+32
-7
1 changed file
expand all
collapse all
unified
split
src
components
home
Landing.astro
+32
-7
src/components/home/Landing.astro
···
52
52
</section>
53
53
54
54
<style>
55
55
-
img {
55
55
+
section {
56
56
+
padding: 10px;
57
57
+
}
58
58
+
59
59
+
figure {
56
60
float: right;
57
57
-
aspect-ratio: 1;
58
58
-
width: 100px;
59
59
-
border-radius: 100%;
60
60
-
shape-outside: circle(50px);
61
61
-
shape-margin: 10px;
62
62
-
margin: 10px;
61
61
+
box-sizing: border-box;
62
62
+
width: 120px;
63
63
+
height: 180px;
64
64
+
margin: 0 0 10px 10px;
65
65
+
66
66
+
image-rendering: pixelated;
67
67
+
background-image: var(--box-rounded-top-png);
68
68
+
background-repeat: no-repeat;
69
69
+
background-size: 100% 100%;
70
70
+
71
71
+
img {
72
72
+
aspect-ratio: 1;
73
73
+
width: 100%;
74
74
+
background-color: #008282;
75
75
+
mask-image: var(--box-circle-mask-png);
76
76
+
mask-size: 120px 120px;
77
77
+
}
78
78
+
79
79
+
figcaption {
80
80
+
margin: auto;
81
81
+
width: fit-content;
82
82
+
margin-block: 10px;
83
83
+
}
84
84
+
}
85
85
+
86
86
+
p {
87
87
+
margin-block: 5px;
63
88
}
64
89
</style>