Compare commits
1 Commits
images
..
responsive
| Author | SHA1 | Date | |
|---|---|---|---|
| fce973bab9 |
Generated
+230
-10330
File diff suppressed because it is too large
Load Diff
+5
-5
@@ -3,17 +3,16 @@
|
|||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "vue-cli-service serve --port 3156",
|
|
||||||
"serve": "vue-cli-service serve",
|
"serve": "vue-cli-service serve",
|
||||||
"build": "vue-cli-service build"
|
"build": "vue-cli-service build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bootstrap": "^4.6.1",
|
"@popperjs/core": "^2.11.5",
|
||||||
|
"bootstrap": "^5.1.3",
|
||||||
"bootstrap-vue": "^2.22.0",
|
"bootstrap-vue": "^2.22.0",
|
||||||
"core-js": "^3.8.3",
|
"core-js": "^3.8.3",
|
||||||
"jquery": "^3.6.0",
|
|
||||||
"popper.js": "^1.16.1",
|
"popper.js": "^1.16.1",
|
||||||
"vue": "^3.2.13",
|
"vue": "^3.2.33",
|
||||||
"vue-router": "^4.0.3",
|
"vue-router": "^4.0.3",
|
||||||
"vuex": "^4.0.0"
|
"vuex": "^4.0.0"
|
||||||
},
|
},
|
||||||
@@ -21,7 +20,8 @@
|
|||||||
"@vue/cli-plugin-babel": "~5.0.0",
|
"@vue/cli-plugin-babel": "~5.0.0",
|
||||||
"@vue/cli-plugin-router": "~5.0.0",
|
"@vue/cli-plugin-router": "~5.0.0",
|
||||||
"@vue/cli-plugin-vuex": "~5.0.0",
|
"@vue/cli-plugin-vuex": "~5.0.0",
|
||||||
"@vue/cli-service": "~5.0.0"
|
"@vue/cli-service": "~5.0.0",
|
||||||
|
"webpack-cli": "^4.9.2"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"> 1%",
|
"> 1%",
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 6.9 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3
-3
@@ -3,9 +3,9 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon_.ico">
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
<title>Facultad de Estudios Superiores Acatlán</title>
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>
|
<noscript>
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 278 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 6.7 KiB |
@@ -1,72 +0,0 @@
|
|||||||
<template>
|
|
||||||
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
downloadItem ({ url, label }) {
|
|
||||||
Axios.get(url, { responseType: 'blob' })
|
|
||||||
.then(response => {
|
|
||||||
const blob = new Blob([response.data], { type: 'application/pdf' })
|
|
||||||
const link = document.createElement('a')
|
|
||||||
link.href = URL.createObjectURL(blob)
|
|
||||||
link.download = label
|
|
||||||
link.click()
|
|
||||||
URL.revokeObjectURL(link.href)
|
|
||||||
}).catch(console.error)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</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>
|
|
||||||
@@ -34,15 +34,6 @@ export default {};
|
|||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
|
||||||
width: 100%;
|
|
||||||
height: 200px;
|
|
||||||
background: #333;
|
|
||||||
border-top: 2px solid #000;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Azul-puma {
|
.Azul-puma {
|
||||||
background-color: #1e3c70;
|
background-color: #1e3c70;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,18 @@
|
|||||||
<template>
|
<template>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="row divMaster header cl-12 azulUnam">
|
<div class="row divMaster header cl-12 azulUnam">
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<div class="wrapperleft">
|
<div class="wrapperleft">
|
||||||
<a href="https://www.acatlan.unam.mx/" target="_blank">
|
<a href="https://www.acatlan.unam.mx/" target="_blank">
|
||||||
<img src="../assets/logo_acatlan.png" class= "img-fluid" alt="logo acatlan" />
|
<img src="../assets/logo_acatlan.png" alt="logo acatlan" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="wrapperright2">
|
<div class="wrapperright2">
|
||||||
<a href="https://www.unam.mx/" target="_blank">
|
<a href="https://www.unam.mx/" target="_blank">
|
||||||
<img src="../assets/logo_unam.png" class= "img-fluid" alt="logo unam" />
|
<img src="../assets/logo_unam.png" alt="logo unam" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -23,26 +27,25 @@ export default {};
|
|||||||
min-width: 50px;
|
min-width: 50px;
|
||||||
float: left;
|
float: left;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
width: 48%;
|
width: 0%;
|
||||||
background-size: 280px, 84px;
|
background-size: 280px, 84px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
padding: 13px
|
padding: 15px
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrapperleft {
|
.wrapperleft {
|
||||||
min-width: 20px;
|
min-width: 20px;
|
||||||
float: right;
|
float: right;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
width: 50%;
|
width: 25%;
|
||||||
background-size: 100px, 69px;
|
background-size: 100px, 69px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position-x: 50%;
|
background-position-x: 50%;
|
||||||
padding: 4px
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
min-width: 50px;
|
min-width: 50px;
|
||||||
width: 100%;
|
width: 85%;
|
||||||
margin: 0px auto;
|
margin: 0px auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link text-white" @click="home()">Inicio</a>
|
<a class="nav-link text-white" @click="home()">Inicio</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link text-white" @click="announcement()">Convocatoria</a>
|
<a class="nav-link text-white" @click="announcement()">Convocatoria</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -161,7 +162,7 @@ nav {
|
|||||||
} */
|
} */
|
||||||
|
|
||||||
.dropdown {
|
.dropdown {
|
||||||
position: absolute;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
@@ -171,17 +172,17 @@ nav {
|
|||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
min-width: 160px;
|
min-width: 160px;
|
||||||
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
|
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
|
||||||
|
/* padding: 12px 16px; */
|
||||||
top: 0.8rem;
|
top: 0.8rem;
|
||||||
left: -10rem;
|
left: -10rem;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.rescont {
|
.rescont {
|
||||||
z-index: ;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-group-item {
|
.list-group-item {
|
||||||
padding: 2px 2px;
|
padding: 12px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-toggler {
|
.navbar-toggler {
|
||||||
|
|||||||
+5
-8
@@ -1,15 +1,12 @@
|
|||||||
import { createApp } from 'vue'
|
import { createApp } from 'vue'
|
||||||
|
import { BootstrapVue, IconsPlugin } from 'bootstrap-vue'
|
||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import router from './router/routes'
|
import router from './router/routes'
|
||||||
import store from './store'
|
import store from './store'
|
||||||
import "bootstrap";
|
import 'bootstrap';
|
||||||
import "bootstrap/dist/css/bootstrap.min.css";
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||||
|
import 'bootstrap-vue/dist/bootstrap-vue.css';
|
||||||
|
import 'bootstrap/dist/css/bootstrap.css';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<div class= "container">
|
<div class= "container">
|
||||||
|
|
||||||
|
<div class= "content is-normal ">
|
||||||
|
|
||||||
|
|
||||||
<h6><b>I. </b></h6>
|
<h6><b>I. </b></h6>
|
||||||
@@ -188,6 +188,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Footer></Footer>
|
<Footer></Footer>
|
||||||
|
|
||||||
@@ -251,7 +252,7 @@ table, th, td {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.space {
|
.space {
|
||||||
margin-left: 40px;width: 20px;
|
margin-left: 40px;width: 700px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
<div class= "container">
|
<div class= "container">
|
||||||
|
|
||||||
|
<div class= "content is-normal ">
|
||||||
|
|
||||||
|
|
||||||
<h6><b>I. </b></h6>
|
<h6><b>I. </b></h6>
|
||||||
@@ -395,7 +396,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Footer></Footer>
|
<Footer></Footer>
|
||||||
|
|
||||||
@@ -458,7 +459,7 @@ table, th, td {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.space {
|
.space {
|
||||||
margin-left: 40px;width: 20px;
|
margin-left: 40px;width: 700px;
|
||||||
|
|
||||||
}
|
}
|
||||||
.list {
|
.list {
|
||||||
|
|||||||
+59
-66
@@ -1,82 +1,76 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Header></Header>
|
<Header></Header>
|
||||||
<Nav></Nav>
|
<Nav></Nav>
|
||||||
<div class="box">
|
<div class ="box">
|
||||||
<nav class="breadcrumb"></nav>
|
<nav class="breadcrumb"></nav>
|
||||||
|
|
||||||
|
<div class= "container">
|
||||||
|
|
||||||
<div class="container">
|
<div class= "content is-normal ">
|
||||||
<h6><b> </b></h6>
|
|
||||||
|
|
||||||
<p><a href="/files/F1_inscripcion_proyecto.docx" download>F1. Inscripcion de Proyecto</a></p>
|
|
||||||
<p><a href="/files/F2_inscripcion_participantes.docx" download>F2. Inscripcion de Particiones</a></p>
|
|
||||||
<p><a href="/files/F3_carta_cesion.docx" download>F3. Carta de Cesión de Derechos</a></p>
|
|
||||||
<p><a href="/files/F4_declaracion_ingresos.docx" download>F4. Inscripcion de Particiones</a></p>
|
|
||||||
<p><a href="/files/F5_solicitud_beca.docx" download>F5. Inscripcion de Particiones</a></p>
|
|
||||||
<p><a href="/files/F6_carta_justificacion_transferencia.docx" download>F6. Carta justificación de transferencia</a></p>
|
|
||||||
<p><a href="/files/F7_Formato_Solicitud_transferencia.docx" download>F7. Formato Solicitud de transferencia PAIDI</a></p>
|
|
||||||
<p><a href="/files/F8_Entrega_Proyecto_Concluido.docx" download>F9. Formato de entrega de trabajo concluido</a></p>
|
|
||||||
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<a href="recursos/2021/F1_inscripcion_proyecto.docx" target="_blank"
|
<h6><b> </b></h6>
|
||||||
>F1. Inscripción de Proyecto</a
|
<p><a href="" target="_blank"></a></p>
|
||||||
>
|
<p><a href="" target="_blank"></a></p>
|
||||||
</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>
|
<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>
|
||||||
<p><a href="" target="_blank"></a></p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<Footer></Footer>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<Footer></Footer>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Header from "./../components/header.vue";
|
|
||||||
import Nav from "./../components/nav.vue";
|
import Header from "../components/header.vue";
|
||||||
import Footer from "./../components/footer.vue";
|
import Nav from "../components/nav.vue";
|
||||||
|
import Footer from "../components/footer.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
Header,
|
Header,
|
||||||
Nav,
|
Nav,
|
||||||
Footer,
|
Footer
|
||||||
},
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
.cent {
|
.cent {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
h6 {
|
h6 {
|
||||||
font-family: Arial, A030, "Nimbus Sans L", FreeSans, "Liberation Sans",
|
|
||||||
sans-serif;
|
font-family: Arial,A030,"Nimbus Sans L",FreeSans,"Liberation Sans",sans-serif;
|
||||||
width: 95%;
|
width: 95%;
|
||||||
font-size: 130%;
|
font-size: 130%;
|
||||||
line-height: 115%;
|
line-height: 115%;
|
||||||
background-color: #e5ebfd;
|
background-color: #E5EBFD;
|
||||||
background-position: -136px -33px;
|
background-position: -136px -33px;
|
||||||
border-color: #a0b1de;
|
border-color: #A0B1DE;
|
||||||
border-radius: 3px 3px 3px 3px;
|
border-radius: 3px 3px 3px 3px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
padding: 8px 0px 8px 34px;
|
padding: 8px 0px 8px 34px;
|
||||||
|
|
||||||
}
|
}
|
||||||
h1,
|
h1, h2, h3, h4, h5, h6 {
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
line-height: 1.4em;
|
line-height: 1.4em;
|
||||||
font-family: "Ubuntu", arial, serif;
|
font-family: 'Ubuntu', arial, serif;
|
||||||
font-weight: lighter;
|
font-weight: lighter;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -86,34 +80,33 @@ h6 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
background: #f1f1f1;
|
background: #f1f1f1;
|
||||||
padding: 1.25rem;
|
padding: 1.25rem;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
width: 950px;
|
width: 950px;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
background: rgb(255, 255, 255);
|
background: rgb(255, 255, 255);
|
||||||
padding: 1.2em;
|
padding: 1.2em;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
width: 95%;
|
width: 95%;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
|
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: #37b2d1;
|
color: #37b2d1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panes .plain-text a {
|
.panes .plain-text a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 700px) {
|
|
||||||
.container {
|
|
||||||
width: 100%;
|
|
||||||
margin: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
+7
-15
@@ -2,8 +2,6 @@
|
|||||||
<div>
|
<div>
|
||||||
<Header></Header>
|
<Header></Header>
|
||||||
<Nav></Nav>
|
<Nav></Nav>
|
||||||
|
|
||||||
<meta name="viewport" content="initial-scale=1">
|
|
||||||
<div class ="box">
|
<div class ="box">
|
||||||
|
|
||||||
<nav class="breadcrumb">
|
<nav class="breadcrumb">
|
||||||
@@ -12,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<div class= "container">
|
<div class= "container">
|
||||||
|
<div class= "content is-normal ">
|
||||||
|
|
||||||
<p> </p>
|
<p> </p>
|
||||||
<!-- -->
|
<!-- -->
|
||||||
@@ -61,25 +59,21 @@
|
|||||||
<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>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<Footer></Footer>
|
<Footer></Footer>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
|
|
||||||
import Header from "./../components/header.vue";
|
import Header from "../components/header.vue";
|
||||||
import Nav from "./../components/nav.vue";
|
import Nav from "../components/nav.vue";
|
||||||
import Footer from "./../components/footer.vue";
|
import Footer from "../components/footer.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
||||||
@@ -96,9 +90,7 @@ export default {
|
|||||||
|
|
||||||
.circle{
|
.circle{
|
||||||
list-style:disc;
|
list-style:disc;
|
||||||
margin-left: 50px;width: 20px;
|
margin-left: 50px;width: 700px;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.space {
|
ul.space {
|
||||||
|
|||||||
+6
-20
@@ -3,18 +3,17 @@
|
|||||||
<Header></Header>
|
<Header></Header>
|
||||||
<Nav></Nav>
|
<Nav></Nav>
|
||||||
<div class ="box">
|
<div class ="box">
|
||||||
|
|
||||||
|
|
||||||
<div class= "container">
|
<div class= "container">
|
||||||
|
<div id="headline">
|
||||||
<br><br><br>
|
<br><br><br>
|
||||||
<div class="paidi">
|
<div class="paidi">
|
||||||
<img src="../assets/paidi.png" class= "img-fluid">
|
<img src="../assets/paidi.png">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<Footer></Footer>
|
<Footer></Footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -47,31 +46,18 @@ export default {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#content {
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
background: #f1f1f1;
|
background: #f1f1f1;
|
||||||
padding: 1.25rem;
|
padding: 1.25rem;
|
||||||
text-align: justify;
|
text-align: center;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
width: 950px;
|
width: 1000px;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
background: rgb(255, 255, 255);
|
background: rgb(255, 255, 255);
|
||||||
padding: 1.2em;
|
padding: 1.2em;
|
||||||
|
text-align: center;
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
width: 95%;
|
|
||||||
text-align: justify;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user