Skip to content

Commit

Permalink
frontend base.css added
Browse files Browse the repository at this point in the history
  • Loading branch information
pepe-mentha committed Oct 10, 2013
1 parent 8b30ae9 commit bd24eb9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/styles/frontend/main/_base.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
// H5BP defaults: https://github.com/h5bp/html5-boilerplate/blob/master/doc/css.md#html5-boilerplate-defaults
// @include h5bp-base-styles;

html {
position: relative;
min-height: 100%;
}

body {
@include reset-marginPadding;

font-family: Arial, Helvetica, sans-serif;
font-size: $site-font-size;
font-weight: normal;
color: $site-font-color;
background-color: $site-background-color;
}

h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}

a {
text-decoration: none;
cursor: pointer;
}

p {
@@ -13,7 +31,16 @@ p {
input,
select,
textarea {
font-family: Arial, Helvetica, sans-serif;
outline: none;
}

textarea {
resize: none;
}

hr {
height: 1px;
border: 0;
background: #999;
}

3 comments on commit bd24eb9

@szinya
Copy link
Contributor

@szinya szinya commented on bd24eb9 Oct 10, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • html { position: relative; } miert?
  • h[1-6] { font-weight: normal; } miert?
  • a { text-decoration: none; } miert?
  • font-family miert nem valtozo?
  • input, select, textarea melle kene a button is.
  • ami a body-n van, az mehetne html-re, nem?

@pepe-mentha
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Sticky footer miatt szokott kelleni, egyébként nem
  • Mostanság mindig custom fontok vannak a designban -> bold, italic, egyebek külön font-face. A h-k meg alapból boldok bírnak lenni, ami viszont rárakódik az alap fontra. A sima font beboldul, a bold még boldabb lesz. Pont ez volt a gond a hajónál is.
  • Többször none mint nem. Szinte csak a szabad szövegnél underline. Menüknél, gomb alakú linkeknél, stb nem.
  • Igaz, az éppen lehet változó is
  • Én nem tenném rá, főleg a marginPadding-ot, de lehet ez csak ízlés kérdése

@pepe-mentha
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ja az inputos kérdés kimaradt. a válaszom igen.

Please sign in to comment.