37 lines
490 B
CSS
37 lines
490 B
CSS
* {
|
|
color: azure;
|
|
}
|
|
aside {
|
|
width: 20%;
|
|
padding-left: .5rem;
|
|
margin-left: .5rem;
|
|
padding-right: .5rem;
|
|
float: right;
|
|
box-shadow: inset 5px 0 5px -5px #000000;
|
|
font-style: italic;
|
|
color: #000000;
|
|
}
|
|
|
|
#logout {
|
|
position: fixed;
|
|
top: 2px;
|
|
left: 2px;
|
|
}
|
|
|
|
#addForm {
|
|
position: fixed;
|
|
top: 2em;
|
|
right: 2px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
#addbox {
|
|
background-color: #2a2a2a;
|
|
color: azure;
|
|
}
|
|
|
|
body {
|
|
background-color: #2a2a2a;
|
|
}
|
|
|