You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
55 lines
1.1 KiB
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background-color: #f0f0f0;
|
|
background-image: url("./bg.jpg");
|
|
background-position: center;
|
|
}
|
|
.window {
|
|
display: flex;
|
|
width: 80%;
|
|
height: 80%;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
background-color: rgb(255, 255, 255);
|
|
border-radius: 8px;
|
|
}
|
|
.nav {
|
|
width: 10%;
|
|
background-color: #306cab;
|
|
color: rgb(255, 255, 255);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 20px;
|
|
border-top-left-radius: 8px;
|
|
border-bottom-left-radius: 8px;
|
|
}
|
|
.nav button {
|
|
width: 100%;
|
|
margin: 10px 0;
|
|
padding: 10px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
background-color: #77e6ea;
|
|
color: rgb(0, 0, 0);
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
.nav button:hover {
|
|
background-color: #1abc9c;
|
|
}
|
|
.content {
|
|
width: 90%;
|
|
padding: 20px;
|
|
border-top-right-radius: 8px;
|
|
border-bottom-right-radius: 8px;
|
|
overflow-y: auto;
|
|
}
|
|
.content img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|