Skip to content
This repository has been archived by the owner on Sep 5, 2019. It is now read-only.

Commit

Permalink
Separation of styles
Browse files Browse the repository at this point in the history
  • Loading branch information
accgit committed Jan 31, 2017
1 parent 9b4b9e9 commit 4f735bd
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
15 changes: 15 additions & 0 deletions src/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

/*
import css styles
*/
@import url(css.ui.min.css);
@import url(style.sign.in.css);

/*
elements
*/
body {
background-color: #f4f4f4;
font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;
padding: 10px 10px 0;
}
18 changes: 2 additions & 16 deletions src/css/style.sign.in.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,4 @@

/*
import css styles
*/
@import url(css.ui.min.css);

/*
elements
*/
body {
background-color: #f4f4f4;
font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;
padding: 10px 10px 0;
}

/*
form
*/
Expand Down Expand Up @@ -62,7 +48,7 @@ body {

@media only screen and (min-width: 768px) {

body {
html body {
padding-top: 70px;
}

Expand All @@ -80,7 +66,7 @@ body {

@media only screen and (min-width: 1170px) {

body {
html body {
padding-top: 150px;
}

Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<title>CSS UI - Sign in</title>

<!-- CSS styles -->
<link rel="stylesheet" href="css/style.sign.in.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- container -->
Expand Down

0 comments on commit 4f735bd

Please sign in to comment.