-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (44 loc) · 865 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (44 loc) · 865 Bytes
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
body {
background: rgb(38, 0, 6);
background: linear-gradient(
0deg,
rgba(38, 0, 6, 1) 0%,
rgba(228, 217, 255, 1) 0%,
rgba(30, 39, 73, 1) 100%
);
background-repeat: no-repeat;
height: 100%;
}
.profileImage {
border-radius: 50%;
}
.profileImageContainer {
display: flex;
align-content: center;
justify-content: center;
height: 200px;
}
.name {
display: flex;
align-content: center;
justify-content: center;
color: rgb(243, 236, 236);
font-family: Arial, Helvetica, sans-serif;
font-size: 1.5rem;
}
a {
display: flex;
align-content: center;
justify-content: center;
border: 1px white solid;
background-color: #273469;
text-decoration: none;
font-size: 2rem;
color: #fafaff;
margin: 30px;
padding: 30px;
}
a:hover {
transform: scale(1.02);
box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.8);
}