-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
122 lines (102 loc) · 1.73 KB
/
Copy pathcustom.css
File metadata and controls
122 lines (102 loc) · 1.73 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
.grey-tint {
filter: grayscale(100%);
transition: filter 0.3s ease;
}
.grey-tint:hover {
filter: grayscale(0%);
}
.store-link {
display: inline-block;
margin: 20px 0;
}
.store-icon {
color: #888;
transition: color 0.3s ease;
}
.store-link:hover .store-icon {
color: #2a2a2a;
}
.list-unstyled {
padding-left: 0;
margin-top: 20px;
}
.list-unstyled li {
margin-bottom: 15px;
padding-left: 30px;
position: relative;
line-height: 1.6;
}
.list-unstyled li i {
position: absolute;
left: 0;
top: 4px;
color: #2a2a2a;
}
.h4 {
margin-bottom: 25px;
font-weight: 600;
}
.logo-row-extra-space {
margin-bottom: 60px;
}
.detect-link {
color: #888;
font-weight: bold;
font-size: 1.2em;
text-decoration: underline;
transition: color 0.3s ease;
}
.detect-link:hover {
color: #2a2a2a;
}
.mobile-works-button {
display: none;
background: white;
color: black;
padding: 12px 24px;
border-radius: 4px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: fixed;
bottom: 20px;
left: 20px;
padding-right: 40px;
z-index: 10;
}
.mobile-works-button:after {
content: '→';
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
}
.mobile-works-button:hover {
text-decoration: none;
color: black;
}
.hero-full-container {
background: transparent;
position: relative;
z-index: 1;
}
#particles-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.mobile-works-button:hover:after {
transform: translateY(-50%) translateX(5px);
}
@media (max-width: 768px) {
.mobile-works-button {
display: inline-block;
}
}
.card-container-full-width {
width: 100%;
}