-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (104 loc) · 1.73 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@1,100&display=swap');
body {
font-family: Chivo Mono,'Courier New', Courier, monospace;
margin: 0;
}
#container {
position: relative;
}
#canvas {
position: absolute;
top: 0;
left: 0;
z-index: 0;
}
/*
#myBtn {
position: absolute;
top: 20px;
left: 20px;
z-index: 1;
background-color: aqua;
font-size: 24px;
text-align: center;
border-radius: 8px;
border: 2px solid white;
transition-duration: 0.4s;
width: 100px;
}
#myBtn:hover {
background-color: white;
color: aqua;
}
*/
.page-container {
max-width: 1200px;
margin: 100px auto;
padding: 50px;
padding-top: 40%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.top-container {
position: relative;
display: flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: 50px;
}
.top-left-container {
position: relative;
width: 200px;
height: 200px;
border-radius: 50%;
}
.profile-pic {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 180px;
height: 180px;
border-radius: 50%;
margin: 10px;
}
.avatar {
vertical-align: middle;
width: 100%;
height: 100%;
border-radius: 20%;
}
.top-right-container {
flex-grow: 1;
padding-left: 50px;
}
.bottom-container {
position: relative;
clear: both;
margin-top: 50px;
padding-left: 10%;
}
a {
text-decoration: none;
border-bottom: none;
}
.social-profile-icon {
size: 10%;
}
.social-icons {
justify-content: center;
}
.social-icons a:link {
border-bottom: none;
background: transparent;
width: 3rem;
height: 3rem;
margin: 0 0.5rem 1.5rem;
}
.social-profile-icon {
width: 2rem;
margin-bottom: 1rem;
display: inline-flex;
}