38 lines
525 B
CSS
Executable File
38 lines
525 B
CSS
Executable File
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
|
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wrapper > nav {
|
|
flex: 0 0 56px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.link {
|
|
list-style-type: none;
|
|
cursor: pointer;
|
|
color: #297bff;
|
|
}
|
|
|
|
.link:hover {
|
|
color: #1c59bb;
|
|
} |