Estructura completa
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
|
||||
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
@@ -0,0 +1,19 @@
|
||||
# paidi_fornt_
|
||||
|
||||
## Project setup
|
||||
```
|
||||
npm install
|
||||
```
|
||||
|
||||
### Compiles and hot-reloads for development
|
||||
```
|
||||
npm run serve
|
||||
```
|
||||
|
||||
### Compiles and minifies for production
|
||||
```
|
||||
npm run build
|
||||
```
|
||||
|
||||
### Customize configuration
|
||||
See [Configuration Reference](https://cli.vuejs.org/config/).
|
||||
@@ -0,0 +1,5 @@
|
||||
module.exports = {
|
||||
presets: [
|
||||
'@vue/cli-plugin-babel/preset'
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"module": "esnext",
|
||||
"baseUrl": "./",
|
||||
"moduleResolution": "node",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"src/*"
|
||||
]
|
||||
},
|
||||
"lib": [
|
||||
"esnext",
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"scripthost"
|
||||
]
|
||||
}
|
||||
}
|
||||
Generated
+17965
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "paidi_fornt_",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build"
|
||||
},
|
||||
"dependencies": {
|
||||
"bootstrap-vue": "^2.22.0",
|
||||
"core-js": "^3.8.3",
|
||||
"vue": "^3.2.13",
|
||||
"vue-router": "^4.0.3",
|
||||
"vuex": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/cli-plugin-babel": "~5.0.0",
|
||||
"@vue/cli-plugin-router": "~5.0.0",
|
||||
"@vue/cli-plugin-vuex": "~5.0.0",
|
||||
"@vue/cli-service": "~5.0.0"
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not dead",
|
||||
"not ie 11"
|
||||
]
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</html>
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
<router-view></router-view>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "App"
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
#app {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-align: center;
|
||||
color: #2c3e50;
|
||||
margin-top: 60px;
|
||||
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.row {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.card-img-top {
|
||||
height: 18rem;
|
||||
}
|
||||
</style>
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 6.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 135 KiB |
@@ -0,0 +1,70 @@
|
||||
<template>
|
||||
<footer class="container-fluid Azul-puma footer py-3 ">
|
||||
<div row>
|
||||
<p class="mb-0 ">Hecho en México, todos los derechos reservados 2021.</p>
|
||||
<p class="my-0 ">
|
||||
Esta página puede ser reproducida con fines no lucrativos, siempre y
|
||||
cuando no se mutile, se cite la fuente
|
||||
</p>
|
||||
<p>
|
||||
completa y su dirección electrónica. De otra forma, requiere permiso
|
||||
previo por escrito de la institución.
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.boton-footer {
|
||||
background-color: rgb(187, 136, 0);
|
||||
color: white;
|
||||
width: 14rem;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
.uno,
|
||||
.dos,
|
||||
.tres {
|
||||
margin-right: 1rem;
|
||||
}
|
||||
.btn {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.Azul-puma {
|
||||
background-color: #1e3c70;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
color: white;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.uno,
|
||||
.tres {
|
||||
margin-right: 4rem;
|
||||
}
|
||||
.dos {
|
||||
margin-right: 0rem;
|
||||
}
|
||||
.footer {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 970px) {
|
||||
.uno,
|
||||
.dos,
|
||||
.tres {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.footer {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,62 @@
|
||||
<template>
|
||||
<div class="row divMaster header cl-12 azulUnam">
|
||||
<div class="wrapper">
|
||||
<div class="wrapperleft">
|
||||
<a href="https://www.acatlan.unam.mx/" target="_blank">
|
||||
<img src="../assets/logo_acatlan.png" alt="logo acatlan" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="wrapperright2">
|
||||
<a href="https://www.unam.mx/" target="_blank">
|
||||
<img src="../assets/logo_unam.png" alt="logo unam" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
<script scoped>
|
||||
export default {};
|
||||
</script>
|
||||
<style>
|
||||
.wrapperright2 {
|
||||
min-width: 50px;
|
||||
float: left;
|
||||
height: 10px;
|
||||
width: 0%;
|
||||
background-size: 280px, 84px;
|
||||
background-repeat: no-repeat;
|
||||
padding: 15px
|
||||
}
|
||||
|
||||
.wrapperleft {
|
||||
min-width: 20px;
|
||||
float: right;
|
||||
height: 10px;
|
||||
width: 25%;
|
||||
background-size: 100px, 69px;
|
||||
background-repeat: no-repeat;
|
||||
background-position-x: 50%;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
min-width: 50px;
|
||||
width: 85%;
|
||||
margin: 0px auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.divMaster {
|
||||
height: 7em;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.azulUnam {
|
||||
background-color: #1e3c70;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
@@ -0,0 +1,204 @@
|
||||
<template>
|
||||
<div class="divMaster doradoUnam row d-flex justify-content-center">
|
||||
<div class="col-10 offset-1">
|
||||
<nav class="navbar navbar-expand-sm navbar-dark ">
|
||||
<button
|
||||
@click="method()"
|
||||
class="navbar-toggler col-5"
|
||||
type="button"
|
||||
data-toggle="collapse"
|
||||
data-target="#navbarTogglerDemo02"
|
||||
aria-controls="navbarTogglerDemo02"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon blanco d-flex"></span>
|
||||
<!-- <span class="mx-2">Menu</span> -->
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse " id="navbarTogglerDemo02">
|
||||
<ul class="navbar-nav mr-auto w-100 d-flex align-items-center justify-content-between mt-0 mt-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-white" @click="home()">Inicio</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-white" @click="announcement()">Convocatoria</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-white" @click="glossary()">Glosario</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-white" @click="criteria()">Criterios de operación</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-white" @click="formats()">Formatos</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
|
||||
export default {
|
||||
methods: {
|
||||
|
||||
home() {
|
||||
this.$router.push("/").catch(() => {
|
||||
location.reload();
|
||||
});
|
||||
},
|
||||
|
||||
announcement() {
|
||||
this.$router.push("/announcement").catch(() => {
|
||||
location.reload();
|
||||
});
|
||||
},
|
||||
glossary() {
|
||||
this.$router.push("/glossary").catch(() => {
|
||||
location.reload();
|
||||
});
|
||||
},
|
||||
|
||||
criteria() {
|
||||
this.$router.push("/criteria").catch(() => {
|
||||
location.reload();
|
||||
});
|
||||
},
|
||||
|
||||
formats() {
|
||||
this.$router.push("/formats").catch(() => {
|
||||
location.reload();
|
||||
});
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.divMaster {
|
||||
/* max-width: 1280px; */
|
||||
height: auto;
|
||||
margin: 0 auto;
|
||||
}
|
||||
nav {
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
|
||||
.azulUnam {
|
||||
background-color: #1e3c70;
|
||||
}
|
||||
|
||||
.doradoUnam {
|
||||
background-color: #bb8800;
|
||||
}
|
||||
|
||||
.dropdown-item:hover {
|
||||
background-color: #bb8800;
|
||||
}
|
||||
|
||||
.dropdown-itemBusqueda:hover {
|
||||
background-color: #1e3c70;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav-link:focus {
|
||||
background-color: #1e3c70;
|
||||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
background-color: #1e3c70;
|
||||
color: white;
|
||||
border-radius: 0.2rem;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
transition: 0.3s;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
padding: 0.3rem 1rem;
|
||||
}
|
||||
|
||||
.menuText {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.reDer {
|
||||
border-top-right-radius: 20px 20px !important;
|
||||
border-bottom-right-radius: 20px 20px !important;
|
||||
}
|
||||
|
||||
.reIzq {
|
||||
border-top-left-radius: 20px 20px !important;
|
||||
border-bottom-left-radius: 20px 20px !important;
|
||||
}
|
||||
|
||||
/*
|
||||
.dropdown-menu {
|
||||
width: 10% !important;
|
||||
} */
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.dropdown-content {
|
||||
position: absolute;
|
||||
background-color: #f9f9f9;
|
||||
min-width: 160px;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
|
||||
/* padding: 12px 16px; */
|
||||
top: 0.8rem;
|
||||
left: -10rem;
|
||||
display: block;
|
||||
}
|
||||
.rescont {
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.list-group-item {
|
||||
padding: 12px 16px;
|
||||
}
|
||||
|
||||
.navbar-toggler {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.navbar-dark .navbar-toggler {
|
||||
border: none;
|
||||
}
|
||||
|
||||
@media (max-width: 450px) {
|
||||
.menuText,
|
||||
.buscador {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
width: 80vw !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
import { createApp } from 'vue'
|
||||
import { BootstrapVue, IconsPlugin } from "bootstrap-vue";
|
||||
import App from './App.vue'
|
||||
import router from './router/routes'
|
||||
import store from './store'
|
||||
import "bootstrap";
|
||||
import "bootstrap/dist/css/bootstrap.min.css";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
createApp(App).use(store).use(router).mount('#app')
|
||||
@@ -0,0 +1,43 @@
|
||||
import { createRouter, createWebHashHistory } from 'vue-router'
|
||||
|
||||
|
||||
const routes = [
|
||||
{
|
||||
path: '/',
|
||||
name: 'home',
|
||||
component: () => import( '../views/home.vue')
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
path: '/announcement',
|
||||
name: 'announcement',
|
||||
|
||||
component: () => import( '../views/announcement.vue')
|
||||
},
|
||||
{
|
||||
path: '/criteria',
|
||||
name: 'criteria',
|
||||
|
||||
component: () => import( '../views/criteria.vue')
|
||||
},
|
||||
|
||||
{
|
||||
path: '/glossary',
|
||||
name: 'glossary',
|
||||
|
||||
component: () => import( '../views/glossary.vue')
|
||||
},
|
||||
{
|
||||
path: '/formats',
|
||||
name: 'formats',
|
||||
component: () => import( '../views/formats.vue')
|
||||
}
|
||||
|
||||
]
|
||||
const router = createRouter({
|
||||
history: createWebHashHistory(),
|
||||
routes
|
||||
})
|
||||
|
||||
export default router
|
||||
@@ -0,0 +1,14 @@
|
||||
import { createStore } from 'vuex'
|
||||
|
||||
export default createStore({
|
||||
state: {
|
||||
},
|
||||
getters: {
|
||||
},
|
||||
mutations: {
|
||||
},
|
||||
actions: {
|
||||
},
|
||||
modules: {
|
||||
}
|
||||
})
|
||||
@@ -0,0 +1,326 @@
|
||||
<template>
|
||||
<div>
|
||||
<Header></Header>
|
||||
<Nav></Nav>
|
||||
<div class ="box">
|
||||
|
||||
<nav class="breadcrumb">
|
||||
|
||||
</nav>
|
||||
|
||||
<div class= "container">
|
||||
|
||||
<div class= "content is-normal ">
|
||||
|
||||
|
||||
<h6><b>I. </b></h6>
|
||||
<p>Con la finalidad de fomentar, mediante un apoyo extraordinario, la realización de proyectos de investigación tecnológica, social y humanística que generen un conocimiento innovador y beneficien la mejora de un producto, servicio y/o proceso que respondan a una necesidad social previamente identificada o que detecte y atienda una demanda de un ámbito específico, la Facultad de Estudios Superiores Acatlán convoca al personal académico que cumpla con las siguientes: </p>
|
||||
|
||||
<h6><b>II. </b></h6>
|
||||
<p>1. </p>
|
||||
<p>2. </p>
|
||||
<p>3. </p>
|
||||
<p>4. </p>
|
||||
<p>5. </p>
|
||||
<p>6. </p>
|
||||
|
||||
<h6><b>III. </b></h6>
|
||||
<p></p>
|
||||
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul>
|
||||
|
||||
<h6><b>IV. </b></h6>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li>
|
||||
<li> <b> </b> </li>
|
||||
<li> <b> </b> </li>
|
||||
<li> <b> </b> </li>
|
||||
<li> <b> </b>
|
||||
|
||||
<div class="space">
|
||||
<ul class= "space">
|
||||
<li>1. </li>
|
||||
<li>2. </li>
|
||||
<li>3. </li>
|
||||
<div class="space">
|
||||
<ul class="circle">
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
</ul>
|
||||
</div>
|
||||
<li>4. </li>
|
||||
<li>5. </li>
|
||||
<li>6. </li>
|
||||
<li>7. </li>
|
||||
<li>8. </li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li> <b> </b> </li>
|
||||
<li> <b> </b> </li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<h6><b>V. </b></h6>
|
||||
<p></p>
|
||||
|
||||
<h6><b>VI. </b></h6>
|
||||
<p></p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul>
|
||||
|
||||
<h6><b>VII</b></h6>
|
||||
<p>
|
||||
|
||||
<br>
|
||||
|
||||
</p>
|
||||
|
||||
<div class="space">
|
||||
<ul class= "space">
|
||||
<li>1. </li>
|
||||
<li>2. </li>
|
||||
<li>4. </li>
|
||||
<li>5. </li>
|
||||
<li>6. </li>
|
||||
<li>7. </li>
|
||||
<li>8. </li>
|
||||
<li>9. </li>
|
||||
<li>10. </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h6><b>VIII. </b></h6>
|
||||
<p>
|
||||
|
||||
<br>
|
||||
|
||||
</p>
|
||||
|
||||
|
||||
<h6><b>IX. </b></h6>
|
||||
<p></p><br>
|
||||
|
||||
<ul>
|
||||
<b> Partidas autorizadas</b><br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
<h6><b>X. </b></h6>
|
||||
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Recepción de propuestas</td>
|
||||
<td>Hasta el 28 de junio de 2021 a las 18:00 horas</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Publicación de resultados</td>
|
||||
<td>13 de agosto de 2021</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inicio del Programa </td>
|
||||
<td>16 de agosto de 2021</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Informe final de actividades </td>
|
||||
<td>15 de agosto de 2022</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<br>
|
||||
<p><b></b>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
<h6><b>XI</b></h6>
|
||||
<p></p>
|
||||
<div class="space">
|
||||
<ul class="circle">
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
|
||||
<div class="cent"><br>
|
||||
“Por mi raza hablará el espíritu”<br>
|
||||
Acatlán, México, .<br> <br>
|
||||
Dr. Manuel Martínez Justo<br>Director
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
|
||||
|
||||
import Header from "../components/header.vue";
|
||||
import Nav from "../components/nav.vue";
|
||||
import Footer from "../components/footer.vue";
|
||||
|
||||
export default {
|
||||
|
||||
components: {
|
||||
Header,
|
||||
Nav,
|
||||
Footer
|
||||
},
|
||||
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<style scoped>
|
||||
|
||||
.cent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
table {
|
||||
margin: 0 auto;
|
||||
font-family: arial, sans-serif;
|
||||
border-collapse: collapse;
|
||||
width: 80%;
|
||||
|
||||
}
|
||||
|
||||
td, th {
|
||||
border: 1px solid #ccc;
|
||||
text-align: left;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {
|
||||
background-color: #dddddd;
|
||||
}
|
||||
|
||||
table, th, td {
|
||||
border: 1.8px solid rgb(179, 179, 179);
|
||||
}
|
||||
|
||||
.circle{
|
||||
list-style:disc;
|
||||
}
|
||||
|
||||
.space {
|
||||
margin-left: 40px;width: 700px;
|
||||
|
||||
}
|
||||
|
||||
ul.space {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
|
||||
ul.list {
|
||||
list-style-type: lower-latin;
|
||||
}
|
||||
.list > li {
|
||||
margin-bottom: .5rem;
|
||||
width: 95%;
|
||||
text-align: justify;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
h6 {
|
||||
|
||||
font-family: Arial,A030,"Nimbus Sans L",FreeSans,"Liberation Sans",sans-serif;
|
||||
width: 95%;
|
||||
font-size: 130%;
|
||||
line-height: 115%;
|
||||
background-color: #E5EBFD;
|
||||
background-position: -136px -33px;
|
||||
border-color: #A0B1DE;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
padding: 8px 0px 8px 34px;
|
||||
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
line-height: 1.4em;
|
||||
font-family: 'Ubuntu', arial, serif;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
#content {
|
||||
font-size: 14px;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.box {
|
||||
background: #f1f1f1;
|
||||
padding: 1.25rem;
|
||||
text-align: justify;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 950px;
|
||||
max-width: 100%;
|
||||
background: rgb(255, 255, 255);
|
||||
padding: 1.2em;
|
||||
|
||||
}
|
||||
|
||||
p {
|
||||
width: 95%;
|
||||
text-align: justify;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
</style>
|
||||
@@ -0,0 +1,534 @@
|
||||
<template>
|
||||
<div>
|
||||
<Header></Header>
|
||||
<Nav></Nav>
|
||||
<div class ="box">
|
||||
|
||||
<nav class="breadcrumb">
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
<div class= "container">
|
||||
|
||||
<div class= "content is-normal ">
|
||||
|
||||
|
||||
<h6><b>I. </b></h6>
|
||||
<p>1. </p>
|
||||
<p>2. </p>
|
||||
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li>
|
||||
|
||||
|
||||
<ul class= "space">
|
||||
<li><a href="" target="_blank"></a> </li>
|
||||
<li><a href="" target="_blank"></a> </li>
|
||||
<li><a href="" target="_blank"></a> </li>
|
||||
</ul>
|
||||
|
||||
<li> <b> </b> </li>
|
||||
|
||||
<ul class= "space">
|
||||
<li><a href="" target="_blank"></a> </li>
|
||||
<li><a href="" target="_blank"></a> </li>
|
||||
<li><a href="" target="_blank"></a> </li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<p>1. </p>
|
||||
<p>2. </p>
|
||||
<!-- -->
|
||||
|
||||
<h6><b>II. </b></h6>
|
||||
<p>5. </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li>
|
||||
<li> <b> </b> </li>
|
||||
<li> <b> </b> </li>
|
||||
<li> <b> </b> </li>
|
||||
<li> <b> </b>
|
||||
|
||||
<div class="space">
|
||||
<ul class= "space">
|
||||
<li>1. </li>
|
||||
<li>2. </li>
|
||||
<li>3. </li>
|
||||
<div class="space">
|
||||
<ul class="circle">
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
</ul>
|
||||
</div>
|
||||
<li>4. </li>
|
||||
<li>5. </li>
|
||||
<li>6. </li>
|
||||
<li>7. </li>
|
||||
<li>8. </li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- -->
|
||||
<h6><b>III. </b></h6>
|
||||
<p>6. </p>
|
||||
<p>7. </p>
|
||||
<p>8. </p>
|
||||
<!-- -->
|
||||
<h6><b>IV. </b></h6>
|
||||
<p>9. </p>
|
||||
<p>10. </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
|
||||
<div>
|
||||
<ul class= "space">
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li>733 </li>
|
||||
</ul>
|
||||
</div>
|
||||
<p> </p>
|
||||
<div>
|
||||
<ul class= "space">
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li>248 </li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
|
||||
<div class="list">
|
||||
<ul class= "circle">
|
||||
<li><b> 2</b> </li><br>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p><b> </b> </p>
|
||||
<p> </p>
|
||||
|
||||
<!-- tabla -->
|
||||
|
||||
<table>
|
||||
|
||||
<tr>
|
||||
<th ></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b></b></td>
|
||||
<td></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b></b></td>
|
||||
<td></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b></b></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b></b></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<p>
|
||||
<i></i>
|
||||
<i></i>
|
||||
<i></i>
|
||||
</p><br>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul><br>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul>
|
||||
|
||||
<div class="list">
|
||||
<ul class= "circle">
|
||||
<li><b> 2</b> </li><br>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<p> </p>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
|
||||
<ul class="list" >
|
||||
<li> </li><br>
|
||||
<li> </li>
|
||||
|
||||
<ul class="roman" >
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
<li> </li>
|
||||
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul>
|
||||
|
||||
<div class="list">
|
||||
<ul class= "circle">
|
||||
<li><b> 2</b> </li><br>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<p> </p><br>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<p> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul><br>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li>
|
||||
</ul><br>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<p> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul>
|
||||
<p> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul><br>
|
||||
<div class="list">
|
||||
<ul class= "circle">
|
||||
<li><b> 2</b> </li><br>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<p> </p>
|
||||
<div class="list">
|
||||
<ul class= "circle">
|
||||
<li> </li><br>
|
||||
<li> </li><br>
|
||||
<li> </li><br>
|
||||
<li> </li><br>
|
||||
<li> </li><br>
|
||||
<li> </li><br>
|
||||
<li> </li><br>
|
||||
<li> </li><br>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<p> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul><br>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul><br>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul><br>
|
||||
<div class="list">
|
||||
<ul class= "circle">
|
||||
<li><b> 2</b> </li><br>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<p> </p>
|
||||
<p> <b> </b> </p>
|
||||
<p> </p>
|
||||
<p> <b> </b> </p>
|
||||
<p> </p>
|
||||
<ul class="list" >
|
||||
<li> <b> </b> </li><br>
|
||||
<li> <b> </b> </li>
|
||||
</ul><br>
|
||||
|
||||
<div class="list">
|
||||
<ul class= "circle">
|
||||
<li><b> 2</b> </li><br>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p> <b> </b> </p>
|
||||
<p> </p>
|
||||
<div class="list">
|
||||
<ul class= "circle">
|
||||
<li><b> 2</b> </li><br>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<table>
|
||||
<tbody><tr>
|
||||
<th colspan="2"></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
|
||||
|
||||
import Header from "../components/header.vue";
|
||||
import Nav from "../components/nav.vue";
|
||||
import Footer from "../components/footer.vue";
|
||||
|
||||
export default {
|
||||
|
||||
components: {
|
||||
Header,
|
||||
Nav,
|
||||
Footer
|
||||
},
|
||||
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
.cent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table {
|
||||
margin: 0 auto;
|
||||
font-family: arial, sans-serif;
|
||||
border-collapse: collapse;
|
||||
width: 80%;
|
||||
|
||||
}
|
||||
|
||||
td, th {
|
||||
border: 1px solid #ccc;
|
||||
text-align: left;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {
|
||||
background-color: #dddddd;
|
||||
}
|
||||
|
||||
table, th, td {
|
||||
border: 1.8px solid rgb(179, 179, 179);
|
||||
}
|
||||
|
||||
.circle{
|
||||
list-style:disc;
|
||||
}
|
||||
.roman{
|
||||
list-style:lower-roman;
|
||||
}
|
||||
|
||||
.space {
|
||||
margin-left: 40px;width: 700px;
|
||||
|
||||
}
|
||||
.list {
|
||||
margin-left: 50px;width: 700px;
|
||||
|
||||
}
|
||||
|
||||
ul.space {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
ul.list {
|
||||
list-style-type: lower-latin;
|
||||
}
|
||||
.list > li {
|
||||
margin-bottom: .5rem;
|
||||
width: 95%;
|
||||
text-align: justify;
|
||||
|
||||
}
|
||||
|
||||
|
||||
h6 {
|
||||
|
||||
font-family: Arial,A030,"Nimbus Sans L",FreeSans,"Liberation Sans",sans-serif;
|
||||
width: 95%;
|
||||
font-size: 130%;
|
||||
line-height: 115%;
|
||||
background-color: #E5EBFD;
|
||||
background-position: -136px -33px;
|
||||
border-color: #A0B1DE;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
padding: 8px 0px 8px 34px;
|
||||
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
line-height: 1.4em;
|
||||
font-family: 'Ubuntu', arial, serif;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
#content {
|
||||
font-size: 14px;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.box {
|
||||
background: #f1f1f1;
|
||||
padding: 1.25rem;
|
||||
text-align: justify;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 950px;
|
||||
max-width: 100%;
|
||||
background: rgb(255, 255, 255);
|
||||
padding: 1.2em;
|
||||
|
||||
}
|
||||
|
||||
|
||||
p {
|
||||
width: 95%;
|
||||
text-align: justify;
|
||||
|
||||
}
|
||||
|
||||
</style>
|
||||
@@ -0,0 +1,112 @@
|
||||
<template>
|
||||
<div>
|
||||
<Header></Header>
|
||||
<Nav></Nav>
|
||||
<div class ="box">
|
||||
<nav class="breadcrumb"></nav>
|
||||
|
||||
<div class= "container">
|
||||
|
||||
<div class= "content is-normal ">
|
||||
|
||||
|
||||
<h6><b> </b></h6>
|
||||
<p><a href="" target="_blank"></a></p>
|
||||
<p><a href="" target="_blank"></a></p>
|
||||
<p><a href="" target="_blank"></a></p>
|
||||
<p><a href="" target="_blank"></a></p>
|
||||
<p><a href="" target="_blank"></a></p>
|
||||
<p><a href="" target="_blank"></a></p>
|
||||
<p><a href="" target="_blank"></a></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
import Header from "../components/header.vue";
|
||||
import Nav from "../components/nav.vue";
|
||||
import Footer from "../components/footer.vue";
|
||||
|
||||
export default {
|
||||
|
||||
components: {
|
||||
Header,
|
||||
Nav,
|
||||
Footer
|
||||
},
|
||||
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
.cent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
h6 {
|
||||
|
||||
font-family: Arial,A030,"Nimbus Sans L",FreeSans,"Liberation Sans",sans-serif;
|
||||
width: 95%;
|
||||
font-size: 130%;
|
||||
line-height: 115%;
|
||||
background-color: #E5EBFD;
|
||||
background-position: -136px -33px;
|
||||
border-color: #A0B1DE;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
padding: 8px 0px 8px 34px;
|
||||
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
line-height: 1.4em;
|
||||
font-family: 'Ubuntu', arial, serif;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
#content {
|
||||
font-size: 14px;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.box {
|
||||
background: #f1f1f1;
|
||||
padding: 1.25rem;
|
||||
text-align: justify;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 950px;
|
||||
max-width: 100%;
|
||||
background: rgb(255, 255, 255);
|
||||
padding: 1.2em;
|
||||
|
||||
}
|
||||
|
||||
p {
|
||||
width: 95%;
|
||||
text-align: justify;
|
||||
|
||||
}
|
||||
a {
|
||||
color: #37b2d1;
|
||||
}
|
||||
|
||||
.panes .plain-text a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
@@ -0,0 +1,148 @@
|
||||
<template>
|
||||
<div>
|
||||
<Header></Header>
|
||||
<Nav></Nav>
|
||||
<div class ="box">
|
||||
|
||||
<nav class="breadcrumb">
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
<div class= "container">
|
||||
<div class= "content is-normal ">
|
||||
|
||||
<p> </p>
|
||||
<!-- -->
|
||||
<h6><strong> </strong></h6>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
|
||||
<ul class="circle">
|
||||
<li> </li>
|
||||
</ul>
|
||||
|
||||
<!-- -->
|
||||
<h6><strong> </strong></h6>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
|
||||
<ul class="circle">
|
||||
<li> </li>
|
||||
</ul>
|
||||
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
|
||||
<ul class="circle">
|
||||
<li> </li>
|
||||
</ul>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<!-- -->
|
||||
<h6><strong> </strong></h6>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<!-- -->
|
||||
<h6><strong> </strong></h6>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
<p><strong> </strong></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
|
||||
import Header from "../components/header.vue";
|
||||
import Nav from "../components/nav.vue";
|
||||
import Footer from "../components/footer.vue";
|
||||
|
||||
export default {
|
||||
|
||||
components: {
|
||||
Header,
|
||||
Nav,
|
||||
Footer
|
||||
},
|
||||
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
.circle{
|
||||
list-style:disc;
|
||||
margin-left: 50px;width: 700px;
|
||||
}
|
||||
|
||||
ul.space {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
h6 {
|
||||
|
||||
font-family: Arial,A030,"Nimbus Sans L",FreeSans,"Liberation Sans",sans-serif;
|
||||
width: 95%;
|
||||
font-size: 130%;
|
||||
line-height: 115%;
|
||||
background-color: #E5EBFD;
|
||||
background-position: -136px -33px;
|
||||
border-color: #A0B1DE;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
padding: 8px 0px 8px 34px;
|
||||
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
line-height: 1.4em;
|
||||
font-family: 'Ubuntu', arial, serif;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
#content {
|
||||
font-size: 14px;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.box {
|
||||
background: #f1f1f1;
|
||||
padding: 1.25rem;
|
||||
text-align: justify;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 950px;
|
||||
max-width: 100%;
|
||||
background: rgb(255, 255, 255);
|
||||
padding: 1.2em;
|
||||
|
||||
}
|
||||
|
||||
|
||||
p {
|
||||
width: 95%;
|
||||
text-align: justify;
|
||||
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,63 @@
|
||||
<template>
|
||||
<div>
|
||||
<Header></Header>
|
||||
<Nav></Nav>
|
||||
<div class ="box">
|
||||
<div class= "container">
|
||||
<div id="headline">
|
||||
<br><br><br>
|
||||
<div class="paidi">
|
||||
<img src="../assets/paidi.png">
|
||||
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Header from "../components/header.vue";
|
||||
import Nav from "../components/nav.vue";
|
||||
import Footer from "../components/footer.vue";
|
||||
|
||||
export default {
|
||||
name: "home",
|
||||
components: {
|
||||
Header,
|
||||
Nav,
|
||||
Footer
|
||||
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
.clear {
|
||||
clear: both;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.paidi{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.box {
|
||||
background: #f1f1f1;
|
||||
padding: 1.25rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 1000px;
|
||||
max-width: 100%;
|
||||
background: rgb(255, 255, 255);
|
||||
padding: 1.2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
</style>
|
||||
@@ -0,0 +1,4 @@
|
||||
const { defineConfig } = require('@vue/cli-service')
|
||||
module.exports = defineConfig({
|
||||
transpileDependencies: true
|
||||
})
|
||||
Reference in New Issue
Block a user