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

Commit 882ed43

Browse files
committed
Separation of styles
1 parent 7de2351 commit 882ed43

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

src/css/style.css

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
/*
3+
import css styles
4+
*/
5+
@import url(css.ui.min.css);
6+
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
7+
@import url(style.responsive.css);
8+
9+
/*
10+
elements
11+
*/
12+
body {
13+
background-color: #f4f4f4;
14+
font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;
15+
}

src/css/style.responsive.css

-14
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,4 @@
11

2-
/*
3-
import css styles
4-
*/
5-
@import url(css.ui.min.css);
6-
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
7-
8-
/*
9-
elements
10-
*/
11-
body {
12-
background-color: #f4f4f4;
13-
font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;
14-
}
15-
162
/*
173
responsive menu
184
*/

src/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<title>CSS UI - Responsive menu</title>
99

1010
<!-- CSS styles -->
11-
<link rel="stylesheet" href="css/style.responsive.css">
12-
<!--<link rel="stylesheet" href="css/style.sidebar.dark.css">-->
11+
<link rel="stylesheet" href="css/style.css">
12+
<!-- <link rel="stylesheet" href="css/style.responsive.dark.css">-->
1313
</head>
1414
<body>
1515
<!-- navigation -->

0 commit comments

Comments
 (0)