Skip to content

Commit

Permalink
Add support for new icons, remove bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
skoshy committed Jan 6, 2017
1 parent 9a94a95 commit c9b3b09
Show file tree
Hide file tree
Showing 5 changed files with 8,109 additions and 14 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ This is essentially a clone of Momentum Dash., which can be found here: https://

I made this to add extra personalization and extra features.

Weather icons by Climacons - http://adamwhitcroft.com/climacons/
Weather icons by Climacons - http://adamwhitcroft.com/climacons/

Other icons by Glyph - http://glyph.smarticons.co/
25 changes: 24 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ body {
color: white;
text-shadow: 0px 0px 12px #000000;
font-family: 'Roboto', sans-serif;
overflow: hidden;
font-size: 14px;
}

.wallpaper {
Expand Down Expand Up @@ -43,6 +45,11 @@ body {
overflow-x: hidden;
}

.weather .weather_top {
display: flex;
align-items: center;
}

.weather .weather_icon {
max-width: 50px;
max-height: 50px;
Expand All @@ -64,7 +71,7 @@ body {
}

.weather .weather_location_container {
margin-top: -14px;
margin-top: -5px;
}

.widget_outer {
Expand All @@ -73,6 +80,13 @@ body {
opacity: .3;
}

.widget_outer.bottom_left {
padding: 150px 150px 20px 20px;
bottom: 0;
left: 0;
text-align: left;
}

.widget_outer.bottom_right {
padding: 150px 20px 20px 150px;
bottom: 0;
Expand All @@ -91,6 +105,15 @@ body {
opacity: 1;
}

svg-icon svg {
width: 32px;
height: 32px;
}

svg-icon svg * {
fill: white;
}

[contentEditable] {
display: inline-block;
/*
Expand Down
Loading

0 comments on commit c9b3b09

Please sign in to comment.