4
5

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.

シンプルで美しいCSSフレームワーク samantic-ui をRailsに導入する。

Last updated at Posted at 2020-10-08

##フレームワークの特徴
タイトルにもある通り、見た目がシンプルで美しいです。
他にも、人間にとって理解しやすいclass名を使用しているという特徴があります。
公式サイト: https://semantic-ui.com/

背景

railsでポートフォリオを作るときに、Bootstrapを使っている人がほとんどなので、違うフレームワークを使えば、見た目で差別化ができて、採用者の目に止まりやすいのではないかと思い、組み込むことに決めました。
##手順

gemfile.
gem 'semantic-ui-sass', github: 'doabit/semantic-ui-sass'

いつものように、$ bundle install

application.css.scss
@import "semantic-ui";

application.cssを、application.scss.cssにrenameします。

application.js
//= require semantic-ui

application.jsにも変更を加えます。

これで、フレームワークが機能します。

参考:
(公式)https://semantic-ui.com/introduction/getting-started.html
https://stackoverflow.com/questions/37283642/how-do-i-set-up-a-rails-application-with-semantic-ui

詳しい使い方はこちら
https://qiita.com/sandabu/items/336fe312acbec98d21e3
https://qiita.com/Yuta_Fujiwara/items/8abeda1b92dcaf505149
https://segakuin.com/css/semantic/

4
5
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
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?