106 lines
1.8 KiB
CSS
106 lines
1.8 KiB
CSS
@font-face {
|
|
font-family: Sora;
|
|
src: url(./dist/sora.ttf);
|
|
}
|
|
|
|
body {
|
|
background: #fff9d8;
|
|
min-width: 500px;
|
|
min-height: 200px;
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: space-evenly;
|
|
padding: 15px;
|
|
box-sizing: border-box;
|
|
border-radius: 10px;
|
|
}
|
|
.btn-primary {
|
|
background-color: #2196F3;
|
|
margin-right: 1rem;
|
|
}
|
|
.btn {
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
h1 {
|
|
font-size: 20px;
|
|
}
|
|
.menu-items {
|
|
margin-bottom: 10px;
|
|
width: 100%;
|
|
}
|
|
.menu-item {
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
.menu-item-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
}
|
|
.menu-item-content {
|
|
display: none;
|
|
margin-top: 1rem;
|
|
}
|
|
.menu-item.expanded .menu-item-content {
|
|
display: block;
|
|
}
|
|
input[type="text"], textarea, select {
|
|
width: 100%;
|
|
padding: 8px;
|
|
margin: 5px 0;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
textarea {
|
|
height: 80px;
|
|
resize: vertical;
|
|
}
|
|
.btn {
|
|
padding: 8px 12px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
}
|
|
.btn-primary {
|
|
background-color: #4285f4;
|
|
color: white;
|
|
}
|
|
.btn-danger {
|
|
background-color: #ea4335;
|
|
color: white;
|
|
}
|
|
.btn-secondary {
|
|
background-color: #f1f1f1;
|
|
color: #333;
|
|
}
|
|
.action-buttons {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 10px;
|
|
}
|
|
.toggle-btn {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
.form-group {
|
|
margin-bottom: 10px;
|
|
}
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
font-weight: bold;
|
|
} |