-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (75 loc) · 1.48 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
*, *:before, *:after{box-sizing: border-box;}
body {
font-family: "Montserrat", sans-serif;
padding: 0;
margin: 0;
background-color: black;
-webkit-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
user-select: none;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
color: black;
}
iframe {
margin-top: 25px;
}
article {
margin: 10px;
margin-bottom:20px;
color: rgba(255, 255, 255, 1);
}
h1 {
color: rgba(255, 255, 255, 1);
margin: 10px;
}
a {
margin: 16px;
text-decoration: none;
color: rgba(255, 255, 255, 0.9);
background-color: rgba(5, 5, 5, 1);
padding: 10px 20px;
border-radius: 50px;
transition: all 0.3s ease;
}
a:hover {
transform: scale(1.05);
background-color: #525252;
}
canvas {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.profile-pic {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 5px;
}
.header-container {
display: flex;
align-items: center;
}
.centered-elements {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 20px; /* rounded corners */
padding: 20px; /* space inside the box */
margin: auto; /* center the box */
transition: all 0.3s ease;
}
.centered-elements:hover {
background-color: rgba(0, 0, 0, 0.7);
transform: scale(1.000);
}