0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Sinatra アプリを CSS で装飾

Posted at

はじめに

前回の記事 - Qiitaで更に味を占めたので、CSSでチョットだけ色を付けてみました

完成画面

20200907A.png
heroku アプリ

前回の反省点

err.or
app.rb:2:in `require': cannot load such file -- sinatra/reloader (LoadError)

単に、sinatra-contribgroup :developmentになっているだけでした。

CSS

ずらずらと並んでいるのはカッコ悪いので、社名のみを表示し、路線名はクリックして表示させることにしました。

style.css
.btm {
    transition: 0.2s;
    height: 0;
    overflow: hidden;
    padding: 0 10px;
}
.container input:checked + .btm {
    height: auto;
    padding: 0 10px 10px 10px;
    background-color: lightsalmon;
}

height0になっているので隠れているんだと思います結果オーライ

まとめ

  • 初アプリ修正
  • CSS に詳しくなった

参照したサイト
【CSS】CSSだけでブロック要素の表示非表示
【初学者向け】Ruby 遅延鉄道路線名の入手方法 - Qiita

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?