diff --git a/src/App.vue b/src/App.vue index 0013bb0..a97c632 100644 --- a/src/App.vue +++ b/src/App.vue @@ -56,6 +56,36 @@ export default defineComponent({ width: 100%; min-height: 100%; background-color: rgba(242, 245, 247, 1); + // background-color: #ccc; + #nav { + width: 220px; + height: 100%; + display: flex; + flex-direction: column; + gap: 20px; + padding: 30px 0; + box-sizing: border-box; + background: #f1f1f1; + box-shadow: 0 5px 15px 8px rgba(1, 22, 54, 0.795); + + .link { + text-decoration: none; + color: rgb(0, 0, 0); + padding: 10px; + transition: all 0.4s; + text-align: center; + + &:hover { + background: rgba(4, 37, 223, 0.274); + color: #f1f1f1; + } + + &.active { + color: #f1f1f1; + background: rgba(17, 120, 255, 0.74); + } + } + } main { flex: 1; width: 100%; diff --git a/src/views/examination/ExamPage.vue b/src/views/examination/ExamPage.vue new file mode 100644 index 0000000..2bd90e4 --- /dev/null +++ b/src/views/examination/ExamPage.vue @@ -0,0 +1,85 @@ + + +