Spaces:
Running
Running
Upload local.css
Browse files
local.css
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: 'Poppins', sans-serif;
|
3 |
+
background-color:#333;
|
4 |
+
}
|
5 |
+
|
6 |
+
#banner{
|
7 |
+
background: #333 center 0 !important;
|
8 |
+
}
|
9 |
+
|
10 |
+
h1, h2, h3, h4, h5, h6 {
|
11 |
+
font-family: 'Poppins', sans-serif;
|
12 |
+
font-weight: 600; /* Example weight */
|
13 |
+
}
|
14 |
+
|
15 |
+
p {
|
16 |
+
font-family: 'Poppins', sans-serif;
|
17 |
+
font-weight: 400; /* Regular weight */
|
18 |
+
}
|
19 |
+
|
20 |
+
.wp-block-button__link {
|
21 |
+
color:#fff;
|
22 |
+
background-color:#32373c;
|
23 |
+
border-radius:9999px;
|
24 |
+
box-shadow:none;
|
25 |
+
text-decoration:none;
|
26 |
+
padding:calc(.667em + 2px) calc(1.333em + 2px);
|
27 |
+
font-size:1.125em
|
28 |
+
}
|
29 |
+
|
30 |
+
.wp-block-file__button{
|
31 |
+
background:#32373c;
|
32 |
+
color:#fff;
|
33 |
+
text-decoration:none
|
34 |
+
}
|
35 |
+
|
36 |
+
.floating-button {
|
37 |
+
position: fixed;
|
38 |
+
bottom: 20px;
|
39 |
+
left: 20px;
|
40 |
+
background-color: #834aff;
|
41 |
+
color: white;
|
42 |
+
padding: 15px 25px;
|
43 |
+
border: none;
|
44 |
+
border-radius: 10px;
|
45 |
+
font-size: 14px;
|
46 |
+
font-weight: bold;
|
47 |
+
cursor: pointer;
|
48 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
49 |
+
transition: background-color 0.3s, box-shadow 0.3s;
|
50 |
+
text-decoration: none;
|
51 |
+
font-family: 'Poppins', sans-serif;
|
52 |
+
display: flex;
|
53 |
+
align-items: center;
|
54 |
+
justify-content: center;
|
55 |
+
}
|
56 |
+
|
57 |
+
.floating-button:hover {
|
58 |
+
background-color: darkviolet;
|
59 |
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
|
60 |
+
}
|
61 |
+
|
62 |
+
.floating-button i {
|
63 |
+
margin-right: 10px;
|
64 |
+
}
|