教材の内容に関係のない質問や教材とは異なる環境・バージョンで進めている場合のエラーなど、教材に関係しない質問は推奨していないため回答できない場合がございます。
その場合、teratailなどの外部サイトを利用して質問することをおすすめします。教材の誤字脱字や追記・改善の要望は「文章の間違いや改善点の指摘」からお願いします。
このアプリケーション全体のCSSを設定しましょう。
本パートでは、CSSの設定を行い、下記の画像のようにTOPページにスタイルが読み込まれている確認までを行います。
Vue.jsはコンポーネントごとに<style>
タグ内でCSSを設定することもできます。
コンポーネント同士のCSSが競合して、画面のスタイルが崩れてしまうことを防ぐために、<style scoped>
というようにスコープ付きCSSを定義できます。
こうすることで、そのコンポーネントにCSSを閉じ込めることができます。
ですが、今回はグローバルなCSSで問題ないので、全てのコンポーネントに同じCSSを設定しましょう。
※この教材でCSS自体の解説は省略させていただきます。
まず、CSSファイルを作成します。
src/assets
ディレクトリ配下にcss
ディレクトリを作成し、styles.css
を作成しましょう。
下記をsrc/assets/css/styles.css
に追加してください。
▼styles.css
src/assets/css/styles.css123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 Copied!html {
background: orange;
font-family: 'Avenir', Helvetica, Arial, 'system-ui', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
width: 100%;
height: 100%;
overflow-x: scroll;
}
header {
background: orange;
height: 70px;
color: white;
font-style: italic;
font-size: 40px;
text-align: left;
padding: 20px;
}
main {
padding: 0 10px;
width: calc(100% - 40px);
height: 100%;
}
.info-line {
margin: 20px;
font-size: 20px;
}
.list-index {
display: flex;
}
.addlist {
margin: 0 10px auto;
display: inline-block;
flex-direction: column;
align-items: flex-start;
min-width: 320px;
width: 320px;
}
.text-input {
padding: 20px 15px;
width: calc(100% - 30px);
background-color: #ccc;
border-radius: 8px;
cursor: pointer;
border: none;
font-family: "Noto Sans Japanese", "Noto Sans", 'system-ui', sans-serif;
font-weight: 700;
font-size: 24px;
color: #242424;
cursor: pointer;
overflow: overlay;
}
.text-input:focus {
outline: 0;
cursor: initial;
}
.add-button {
margin-top: 15px;
padding: 15px 18px;
background-color: #999;
border: none;
border-radius: 8px;
font-family: "Noto Sans Japanese", "Noto Sans", 'system-ui', sans-serif;
font-weight: 700;
font-size: 18px;
color: #fff;
}
.add-button:hover {
opacity: 0.8;
cursor: pointer;
}
.active .text-input {
background-color: #fff;
}
.addable .add-button {
background-color: #00d78f;
pointer-events: auto;
cursor: pointer;
}
.add-button:active {
background-color: #00d78f;
}
.list {
margin: 0 5px auto;
position: relative;
display: inline-block;
flex-direction: column;
align-items: flex-start;
min-width: 290px;
width: 290px;
background-color: #e0e0e0;
border-radius: 8px;
padding: 15px;
border: solid #ddd 1px;
color: gray;
vertical-align: top;
}
.listheader {
width: 290px;
display: inline-flex;
justify-content: space-between;
}
.list-title {
font-size: 20px;
font-weight: bold;
padding: 15px;
}
.list-counter {
color: rgb(0, 140, 255);
padding: 15px;
}
.deletelist {
position: absolute;
top: 6px;
right: 14px;
font-size: 28px;
}
.deletelist:hover {
opacity: 0.8;
cursor: pointer;
}
.card {
margin-top: 10px;
margin-bottom: 10px;
position: relative;
display: flex;
padding: 30px 15px 40px;
background-color: #fff;
border-radius: 8px;
width: 260px;
cursor: pointer;
}
.close-button {
position: absolute;
top: 6px;
right: 15px;
font-size: 22px;
cursor: pointer;
border-radius: 8px;
border-color: red;
border-style: solid;
background-color: red;
color: white;
margin: 5px;
}
.body {
font-size: 18px;
width: 100%;
word-wrap: break-word;
}
あとは、作成したstyles.css
をsrc/main.js
で読み込みましょう。
下記をsrc/main.js
に追記してください。
▼main.js
src/main.js1234567891011 Copied!import Vue from 'vue'
import App from './App.vue'
import store from './store'
import './assets/css/styles.css' // ★追記
Vue.config.productionTip = false
new Vue({
store,
render: h => h(App)
}).$mount('#app')
main.js
に追記し終わったら、一度サーバーを立ち上げ直し、styles.css
を読み込みます。
下記コマンドを実行してください。
Copied!$ cd my-trello
$ npm run serve
このコマンドでローカルサーバーも立ち上がるので、実際にブラウザでCSSが読み込まれているか確認しましょう。
サーバーが立ち上がったら、http://localhost:8080/ にアクセスしましょう。
下記の画像のようにTOPページがオレンジ色になっていたら成功です。
次章では、ListAdd
コンポーネントとList
コンポーネントを作成します。