-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (68 loc) · 1.2 KB
/
styles.css
File metadata and controls
78 lines (68 loc) · 1.2 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
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
min-height: 100vh;
display: grid;
place-items: center;
text-align: center;
background: rgb(24, 24, 24);
}
.container {
background: rgb(24, 24, 24);
width: 95vw;
max-width: 481px;
padding: 2rem;
border-radius: 0.25rem;
}
.avatar {
width: 5rem;
object-fit: cover;
/* for circle */
/* aspect-ratio: 1/1;
border-radius: 50%; */
}
h3,
h5 {
color: whitesmoke;
letter-spacing: 2px;
}
.links-block {
margin-top: 1rem;
}
.link {
text-transform: uppercase;
text-decoration: none;
display: block;
color: #192e4b;
background: white;
margin: 1.75rem 0;
padding: 0.5rem;
font-weight: bold;
outline: 2px solid whitesmoke;
outline-offset: 4px;
letter-spacing: 2px;
transition: all 0.3s linear;
}
.link:hover {
background: transparent;
color: white;
}
.social-links {
display: flex;
gap: 1.25rem;
justify-content: center;
}
.social-link {
font-size: 1.75rem;
color: whitesmoke;
transition: all 0.3s linear;
}
.social-link:hover {
transform: scale(1.1);
color: white;
}