premik stillov iz index na app.vue
parent
8ebf402c59
commit
7c6560740a
47
nuxt/app.vue
47
nuxt/app.vue
|
@ -13,5 +13,52 @@
|
|||
position: relative;
|
||||
z-index: 50;
|
||||
}
|
||||
:root {
|
||||
--siva: #D9D9D9;
|
||||
--bela: #fff;
|
||||
--rdeca: #f00;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Inter;
|
||||
margin: 0;
|
||||
background: var(--siva);
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
font-size: 2.5rem;
|
||||
margin: .2rem 0 1rem 0;
|
||||
}
|
||||
|
||||
.stran {
|
||||
position: relative;
|
||||
background: var(--bela);
|
||||
margin: 2rem;
|
||||
border-radius: 3rem;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
input[type=submit] { margin-top: 1rem; }
|
||||
|
||||
details > summary {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.gumb {
|
||||
font-family: Trailers;
|
||||
font-size: 2rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.etherpad-textarea {
|
||||
height: 25rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
@ -10,52 +10,3 @@ await store.naloziStrani()
|
|||
<template>
|
||||
<section class="stran" v-html="stran.tekst" />
|
||||
</template>
|
||||
|
||||
<style>
|
||||
:root {
|
||||
--siva: #D9D9D9;
|
||||
--bela: #fff;
|
||||
--rdeca: #f00;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Inter;
|
||||
margin: 0;
|
||||
background: var(--siva);
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
font-size: 2.5rem;
|
||||
margin: .2rem 0 1rem 0;
|
||||
}
|
||||
|
||||
.stran {
|
||||
position: relative;
|
||||
background: var(--bela);
|
||||
margin: 2rem;
|
||||
border-radius: 3rem;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
input[type=submit] { margin-top: 1rem; }
|
||||
|
||||
details > summary {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.gumb {
|
||||
font-family: Trailers;
|
||||
font-size: 2rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.etherpad-textarea {
|
||||
height: 25rem;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue