create ViewForm page
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
19
src/assets/styles/generatingFormFields.module.scss
Normal file
19
src/assets/styles/generatingFormFields.module.scss
Normal 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 {
|
||||
|
||||
}
|
||||
}
|
27
src/assets/styles/viewForm.module.scss
Normal file
27
src/assets/styles/viewForm.module.scss
Normal 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 {
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user