-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.css
More file actions
69 lines (60 loc) · 1.38 KB
/
Copy pathindex.css
File metadata and controls
69 lines (60 loc) · 1.38 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
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
--green: hsl(75, 94%, 57%);
--white: hsl(0, 0%, 100%);
--grey-700: hsl(0, 0%, 20%);
--grey-800: hsl(0, 0%, 12%);
--grey-900: hsl(0, 0%, 8%);
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
background-color: var(--grey-900);
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: var(--grey-800);
gap: 16px;
padding: 32px;
border-radius: 16px;
}
body, h1, h2, p {
padding: 0;
margin: 0;
font-family: 'Inter';
}
h1{
color: var(--white);
}
h2 {
color: var(--green);
}
p {
color: var(--white);
}
.profile-pic{
height: 128px;
width: 128px;
border-radius: 64px;
}
a {
background-color: var(--grey-700);
border: transparent;
width: 100%;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
color: var(--white);
text-decoration: none;
padding: 8px;
}
a:hover{
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out ;
background-color: var(--green);
color: var(--grey-700);
}