This repository was archived by the owner on Oct 26, 2023. It is now read-only.
forked from CodeF53/personal-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (120 loc) · 2.46 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body {
background: #1c1c1c;
font-family: 'Segoe UI', sans-serif;
color: white;
display:flex;
flex-direction: column;
justify-content: center;
user-drag: none;
-webkit-user-drag: none;
position: relative
}
/* Fit PointCloud canvas perfectly to window */
canvas#background {
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
z-index: 0;
}
/* font size and margins */
h1, h2, h3, h4, h5 {
margin-top: 0;
margin-bottom: 0;
}
h1 {
font-size:5em;
}
h2 {
font-size: 2.5em;
}
p {
font-size: 1em;
text-align: left;
}
#NameBanner {
margin-left:auto;
margin-right:auto;
}
.panel {
margin-left:auto;
margin-right:auto;
background: rgba(255,255,255, 0.05);
border-radius: 1em;
padding: 1em;
justify-content: center;
width: fit-content;
text-align: center;
z-index: 2;
backdrop-filter: blur(5px);
margin-top: 1em;
margin-bottom: 1em;
}
/* button */
.button {
background: rgba(255,255,255, 0.05);
border-radius: 20px;
margin: 0.5em;
display: inline-flex;
justify-content: center;
width: fit-content;
padding: 1em;
position:relative;
/* cursor: none; */
}
/* size and fill color of button icons */
.button svg, .button svg image {
width: 3em; height: 3em;
fill: white;
}
/* color button icons darkcyan when hovered */
.button:hover svg, .button:hover svg image { fill: darkcyan; }
/* double button background opacity when hovered to hint to user that its a button */
.button:hover { background: rgba(255,255,255, 0.1); }
/* make links not be so loud color */
p a { color: aliceblue; }
/* Hide link underlines */
.button a { text-decoration: none; }
/* popout */
#discord-popout {
display:flex;
flex-direction:row;
z-index: 1;
}
#discord-icon {
border-radius: 50%;
}
#discord-online-color {
position: absolute;
top: 75px;
left: 75px;
height: 20px;
width: 20px;
background-color: #bbb;
border-radius: 50%;
}
#discord-ID-status {
display:flex;
flex-direction: column;
justify-content: left;
text-align: left;
padding-left: 0.5em;
}
#discord-popout h3 {
font-size: 2em;
}
.hidden {
display: none!important;
}
.title {
position: absolute; /* must have this */
background: rgba(255,255,255,0.1);
backdrop-filter: blur(5px);
color: white;
font-size: 1em;
padding: 0.5em;
border-radius: 1em;
z-index: 100;
pointer-events: none;
}