create ViewForm page

This commit is contained in:
kuwsh1n
2024-03-12 01:11:28 +03:00
parent 16a82736a4
commit 90aec8fad0
12 changed files with 204 additions and 55 deletions

View File

@ -53,6 +53,7 @@
height: 25%;
width: 100%;
font-family: "Montserrat", sans-serif;
position: relative;
&:hover {
background-color: rgba(240, 240, 240, 0.8);
}
@ -72,6 +73,13 @@
width: 33.3%;
text-align: center;
}
i {
position: absolute;
font-size: 15px;
right: 30px;
top: calc(50% - 7px);
cursor: pointer;
}
}
}
}

View File

@ -0,0 +1,19 @@
.item {
padding: 10px 20px;
border-top: 1px solid rgb(200, 200, 200);
&__question {
&__text {
font-size: 15px;
font-family: "Montserrat", sans-serif;
}
&__comment {
font-size: 11px;
font-family: "Montserrat", sans-serif;
font-style: italic;
color: rgb(200, 200, 200);
}
}
&__answer {
}
}

View File

@ -0,0 +1,27 @@
.main {
width: 100%;
height: 100%;
}
.wrapper {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.form {
width: 70%;
min-height: 80%;
box-shadow: 0 0 5px 1px rgb(200, 200, 200);
&__header {
}
&__content {
}
&__footer {
}
}