/*
Name: Nao Okada
Date: 04.22.18
Section: CSE 154 AJ

This is the ascii.css style sheet for 
index.html page which is for a bookmark manager.
After users add a bookmark, the bookmark will be added in the 
list. After users see the link which they alreasy add, 
it will be deleted.
*/

body {
  background-color: #01abaa;
  font-size: 14px;
  color: #F9FDDD;
  margin: 0 auto;
  font-family: monospace;
}

h1,h2,h3,h4,h5,h6,p,label,legend,li{
  margin: 0;
  color: #F9FDDD;
  font-family: 'Shadows Into Light', cursive;
}

h1 {
  font-size: 36pt;
}

h2 {
  font-size: 28pt;
}

p {
  font-size: 15pt;
  color: #FEDC3D;
}

header {
  height: 50px;
  width: 100%;
  position: fixed;
  z-index: 2;
  line-height: 50px;
}

main {
  padding: 100px 10% 10%;
  height: calc(100% - 86px);
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#priority input{
  display: none;
}

#priority label{
  display: block;
  float: left;
  cursor: pointer;
  width: 80px;
  margin: 0;
  padding: 12px 5px;
  border-right: 1px solid #01ABAA;
  color: #01ABAA;
  background-color: #F9FDDD;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  transition: .2s;
}

#priority input:checked + label {
  background-color: #FEDC3D;
  color: #F9FDDD;
}

button {
  border-right: 1px solid #01ABAA;
  color: #01ABAA;
  background-color: #F9FDDD;
}

button:hover {
  background-color: #FEA680;
  color: #F9FDDD;
}

fieldset {
  border: none;
}

li {
  height: 40px;
  min-width: 150px;
  text-align: center;
  list-style: none;
  line-height: 40px;
  margin: 15px;
}

li a {
  text-decoration: none;
  color: #F9FDDD;
}

li:hover {
  font-size: 25px;
}

.pri1 {
  background-color: #F9FDDD;
}

.pri1 > a {
  color: #01ABAA;
}

.pri3 {
  background-color: #FEA680;
}

.pri2 {
  background-color: #FEDC3D;
}

.center {
  width: 100%;
  text-align: center;
}

header, footer {
  background-color: #FEA680;
  text-align: center;
}

footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
}

footer p {
  color: #F9FDDD;
}
