-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathindex.module.css
More file actions
62 lines (51 loc) · 1.01 KB
/
index.module.css
File metadata and controls
62 lines (51 loc) · 1.01 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
.main__home {
background: linear-gradient(rgb(255 255 255), rgb(255 255 255/50%));
}
[data-theme='dark'] .main__home {
background: linear-gradient(rgb(15 23 42), rgb(15 23 42/50%));
}
.home__header {
margin: 1rem;
}
.home__divider h2 {
text-align: center;
}
.home__hr {
background-color: var(--ifm-color-primary);
margin: 2rem auto;
}
.home__divider {
margin: 2rem auto;
}
.home__divider::after {
content: "";
display: block;
margin: 10px auto;
width: 100px;
height: 2px;
background-color: var(--ifm-color-primary);
}
.section {
padding: 1rem;
}
.rateUsButton {
display: block;
margin: 20px auto;
padding: 10px 20px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
text-align: center;
}
.gsocHero {
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
overflow: hidden;
position: relative;
z-index: 1;
}
.gsocHero:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}