Upload main.css
Browse files
main.css
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300;400;500;600;700&display=swap');
|
2 |
+
* {font-family: 'Readex Pro';}
|
3 |
+
a {
|
4 |
+
text-decoration: none;
|
5 |
+
color: blue !important;
|
6 |
+
font-weight: 500;
|
7 |
+
}
|
8 |
+
a:hover {
|
9 |
+
color: #d33682 !important;
|
10 |
+
text-decoration: none;
|
11 |
+
}
|
12 |
+
ul {list-style-type: none;}
|
13 |
+
hr {
|
14 |
+
margin-top: 0px;
|
15 |
+
margin-bottom: 5%;
|
16 |
+
}
|
17 |
+
#MainMenu {visibility: hidden;}
|
18 |
+
footer {visibility: hidden;}
|
19 |
+
header {visibility: hidden;}
|
20 |
+
#Fonts features defined here.
|