diff options
| -rw-r--r-- | menu.css | 4 | ||||
| -rw-r--r-- | style.css | 15 | 
2 files changed, 15 insertions, 4 deletions
| @@ -14,6 +14,10 @@ ul.menu li {    margin-left: 0px;  } +ul.menu li:before { +  content: ""; +} +  ul.menu a {    height: 50px;    line-height: 50px; @@ -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; | 
