-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (90 loc) · 1.59 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
@font-face {
font-family: "Inter";
src: url("./assets/fonts/static/Inter-Regular.ttf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Inter";
src: url("./assets/fonts/static/Inter-SemiBold.ttf");
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: "Inter";
src: url("./assets/fonts/static/Inter-Bold.ttf");
font-weight: 700;
font-style: normal;
}
* {
margin: 0;
padding: 0;
font-family: "Inter";
}
.page-container {
display: flex;
justify-content: center;
align-items: center;
background-color: hsl(0, 0%, 8%);
min-height: 100vh;
}
.component-container {
display: flex;
flex-direction: column;
align-items: center;
background-color: hsl(0, 0%, 12%);
padding: 30px;
width: 270px;
border-radius: 10px;
}
.headshot-wrapper {
padding-bottom: 20px;
}
.headshot {
width: 75px;
border-radius: 50%;
}
.name {
color: white;
font-weight: 700;
padding-bottom: 5px;
}
.location {
color: hsl(75, 94%, 57%);
font-weight: 600;
font-size: 12px;
padding-bottom: 25px;
}
.description {
color: white;
font-weight: 400;
font-size: 12px;
margin-bottom: 15px;
}
.link-list {
list-style: none;
width: 100%;
}
.links {
background-color: hsl(0, 0%, 20%);
color: white;
padding: 10px 0px;
border-radius: 5px;
text-align: center;
font-weight: 700;
font-size: 12px;
margin: 10px;
}
.links a {
background-color: inherit;
color: inherit;
text-decoration: none;
display: block;
width: 100%;
height: 100%;
}
.links:hover {
background-color: hsl(75, 94%, 57%);
color: black;
cursor: pointer;
}