aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--menu.css4
-rw-r--r--style.css15
2 files changed, 15 insertions, 4 deletions
diff --git a/menu.css b/menu.css
index 9f79ab0..295533e 100644
--- a/menu.css
+++ b/menu.css
@@ -14,6 +14,10 @@ ul.menu li {
margin-left: 0px;
}
+ul.menu li:before {
+ content: "";
+}
+
ul.menu a {
height: 50px;
line-height: 50px;
diff --git a/style.css b/style.css
index 71e779b..2a3dea9 100644
--- a/style.css
+++ b/style.css
@@ -14,23 +14,26 @@ body {
}
#content {
- margin-top: 90px;
+ margin-top: 65px;
background-color: white;
border-radius: 5px;
padding: 30px 50px 30px 50px;
}
h1 {
- font-size: 30px;
+ font-size: 36px;
margin-bottom: 30px;
margin-left: 10px;
+ font-weight: bold;
+ color: #F52F8A;
}
h2 {
font-size: 26px;
margin-bottom: 30px;
margin-left: 10px;
- text-decoration: underline;
+ color: #F52F8A;
+ font-weight: bold;
}
p {
@@ -52,11 +55,15 @@ ul {
}
li {
- list-style-type: square;
margin-left: 30px;
margin-bottom: 5px;
}
+li:before {
+ content: "• ";
+ color: #F52F8A;
+}
+
a {
text-decoration: none;
color: darkblue;