-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
96 lines (85 loc) · 1.48 KB
/
styles.css
File metadata and controls
96 lines (85 loc) · 1.48 KB
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
body {
background-color: #000000;
font-family: "Arial", sans-serif;
}
.centre-container {
display: grid;
grid-auto-flow: column;
gap: 10px;
justify-content: center;
align-items: center;
height: 95vh;
margin: 0;
}
.button-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
justify-items: center;
text-align: center;
}
@media (max-width: 950px) {
.button-container {
grid-template-columns: 1fr;
}
}
.button {
display: inline-block;
padding: 15px 30px;
margin: 15px;
font-size: 18px;
color: #ffffff;
background-color: #1e1e1e;
border: 2px solid #ffffff;
border-radius: 5px;
text-decoration: none;
transition:
transform 0.3s,
background-color 0.3s;
position: relative;
width: 250px;
}
.button:hover {
transform: scale(1.1);
background-color: rgba(255, 255, 255, 0.1);
}
.button-text {
font-size: 24px;
}
.icon {
display: block;
margin: 10px auto 0;
width: 128px;
height: auto;
border-radius: 10px;
border: 2px solid #ffffff;
}
.about-me-container {
position: absolute;
top: 20px;
right: 20px;
}
.about-me-button {
color: white;
padding: 10px 20px;
text-align: center;
}
.about-me-button:hover {
color: rgba(255, 255, 255, 0.5);
}
.popup {
display: none;
text-align: center;
color: white;
}
.about-me-container:hover .popup,
.popup:hover {
display: block;
}
.mod-icon {
width: 80px;
aspect-ratio: 1 / 1;
object-fit: cover;
margin-top: 5dvh;
border-radius: 10px;
}