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

Commit f95337d

Browse files
committed
Re-design
1 parent a10111c commit f95337d

File tree

4 files changed

+39
-32
lines changed

4 files changed

+39
-32
lines changed

src/css/style.responsive.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
.sidebar ul.menu {
3737
background-color: white;
38+
padding-bottom: 15px;
3839
list-style: none;
3940
margin: 0;
4041
}
@@ -46,23 +47,22 @@
4647

4748
.sidebar ul.menu li {
4849
line-height: 38px;
49-
margin: 0;
50+
font-weight: 500;
51+
padding-top: 15px;
5052
color: #353637;
5153
}
5254

5355
.sidebar ul.menu li ul li {
54-
font-size: 1.125em;
56+
padding-top: 0;
57+
font-size: 1.125em;
58+
margin: 0;
5559
}
5660

5761
.sidebar ul.menu li span span {
5862
padding: 0 15px 0 25px;
5963
display: block;
6064
}
6165

62-
.sidebar ul.menu li.top {
63-
padding-top: 15px;
64-
}
65-
6666
.sidebar ul.menu li .icon {
6767
margin-right: 10px;
6868
font-size: 12px;

src/css/style.responsive.dark.css

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/css/style.responsive.theme.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
/*
3+
theme style sidebar menu
4+
*/
5+
.nav .click { color: #717377; }
6+
.nav .click .menu:hover { background-color: #272a30; }
7+
8+
.sidebar .title {
9+
background-color: #393c45;
10+
font-weight: 500;
11+
color: white;
12+
}
13+
14+
.sidebar ul.menu { background-color: #2b2e35; }
15+
.sidebar ul.menu li { color: #717377; }
16+
.sidebar ul.menu li a { color: #dfe1e7; }
17+
.sidebar ul.menu li a:hover {
18+
background-color: #393c45;
19+
color: white;
20+
}
21+
22+
.sidebar ul.menu li a.current {
23+
color: #ff933b;
24+
}
25+
26+
@media only screen and (min-width: 768px) {
27+
28+
.sidebar {
29+
background-color: #2b2e35;
30+
}
31+
32+
}

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

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

0 commit comments

Comments
 (0)