-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (84 loc) · 1.92 KB
/
Copy pathstyles.css
File metadata and controls
97 lines (84 loc) · 1.92 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
97
body {
background-color: #443199;
font-family: 'Story Script', sans-serif;
color: #FFF4E1;
margin: 0;
padding: 40px 20px;
display: flex;
justify-content: center;
}
.dashboard-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 900px;
width: 100%;
}
.ui-link-box {
text-decoration: none;
color: #FFF4E1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 25px;
border-radius: 15px;
min-height: 140px;
text-align: center;
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
cursor: pointer;
box-sizing: border-box;
}
.ui-link-box:hover {
transform: translateY(-4px);
box-shadow: 0 10px 20px rgba(0,0,0,0.25);
filter: brightness(1.1);
}
.center-title-box {
grid-column: span 2;
background-color: #C13383;
cursor: default;
min-height: auto;
padding: 40px;
}
.center-title-box:hover {
transform: none;
}
.center-title-box h1 {
font-family: 'Black Ops One', sans-serif;
font-size: 3rem;
margin: 0 0 15px 0;
}
.center-title-box h2 {
font-size: 1.2rem;
opacity: 0.9;
margin-top: 15px;
border-top: 1px solid rgba(255,244,225,0.3);
padding-top: 15px;
}
.skibidi-box {
background-color: #792CA2;
}
.redirect-box {
background-color: #E05454;
}
.ui-link-box .hover-text {
display: none;
font-size: 1rem;
line-height: 1.5;
}
.ui-link-box .normal-text {
display: block;
font-size: 1.3rem;
font-weight: bold;
}
.ui-link-box:hover .normal-text {
display: none;
}
.ui-link-box:hover .hover-text {
display: block;
}
.center-title-box .hover-view-title { display: none; font-size: 1rem; line-height: 1.6; }
.center-title-box:hover .default-view-title { display: none; }
.center-title-box:hover .hover-view-title { display: block; }