
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<template>
<div>
<div class="w1400">
<div class="guide-bos">
<section class="guide-logo page-logo">
<!-- <img src="../../../../resources/jpg/info-logo.png" alt=""> -->
<h1>AI 디지털교과서 개발 가이드라인</h1>
<div class="guide-logo-bt">
<a style="font-size: 15px;" class="down-btn-1"
href="https://webst.edunet.net/AIDT/AI 디지털교과서 개발 가이드라인.pdf" target='_blank' download>
<i class="fa-solid fa-circle-down guide_i"
style="font-size: 20px; margin-right: 10px;"></i>가이드라인
다운받기</a>
</div>
</section>
<hr>
<section class="guide-sec">
<img src="../../../../resources/jpg/guide-line.png" alt="">
</section>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
},
watch: {
},
computed: {
},
mounted() {
console.log('Login mounted');
}
}
</script>
<style scoped>
div {
background-color: white;
width: 100%;
height: 100%;
}
.guide-bos {
width: 100%;
height: 100%;
}
.guide-logo {
width: 100%;
/* padding: 6rem; */
display: grid;
grid-template-columns: 80% 20%;
}
.guide-logo-bt {
background-color: hsl(217, 92%, 61%);
margin: 0 auto;
padding: 1.5rem;
border-radius: 2rem;
/* width: 20%; */
text-align: center;
}
.guide-logo-bt i,
.guide-logo-bt a {
color: white;
}
.guide-sec {
padding: 3rem;
}
</style>