log styles
This commit is contained in:
parent
af216ac962
commit
d189a88c78
1 changed files with 14 additions and 10 deletions
|
@ -9,16 +9,16 @@ body {
|
||||||
}
|
}
|
||||||
.window {
|
.window {
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 60%;
|
width: 80%;
|
||||||
height: 60%;
|
height: 80%;
|
||||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||||
background-color: white;
|
background-color: rgb(255, 255, 255);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
.nav {
|
.nav {
|
||||||
width: 25%;
|
width: 10%;
|
||||||
background-color: #50372c;
|
background-color: #306cab;
|
||||||
color: white;
|
color: rgb(255, 255, 255);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -32,8 +32,8 @@ body {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background-color: #7e5b53;
|
background-color: #77e6ea;
|
||||||
color: white;
|
color: rgb(0, 0, 0);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background-color 0.3s;
|
transition: background-color 0.3s;
|
||||||
}
|
}
|
||||||
|
@ -41,9 +41,13 @@ body {
|
||||||
background-color: #1abc9c;
|
background-color: #1abc9c;
|
||||||
}
|
}
|
||||||
.content {
|
.content {
|
||||||
width: 75%;
|
width: 90%;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
border-top-right-radius: 8px;
|
border-top-right-radius: 8px;
|
||||||
border-bottom-right-radius: 8px;
|
border-bottom-right-radius: 8px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
.content img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue