LoginSignup
7
7

More than 5 years have passed since last update.

Railsで使ってる間に合わせのCSS

Last updated at Posted at 2012-05-07

Railsやるときに「あとでちゃんとCSS作るけど、今はテキトーなスタイルでいいや」っていうときに使ってるCSS。わかる人にはわかる某サイトのデモを意識した。

application.css.scss
//= require_self
//= require_tree .

html {
  background-color: #4B7399;
  font-family: Verdana, Helvetica, Arial;
  font-size: 14px;
}

body {
  background-color: #FFFFFF;
  border: 1px solid #000000;
  margin: 50px auto;
  padding: 20px;
  width: 680px;
}

p {
  margin-bottom: 10px;
}

h1, h2 {
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 21px;
}
7
7
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
7
7