fixing file structure
This commit is contained in:
parent
8f18104029
commit
ac7e30a111
|
@ -1,3 +1,4 @@
|
||||||
|
/* Layout */
|
||||||
.container.main-content {
|
.container.main-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-top: 70px;
|
margin-top: 70px;
|
||||||
|
@ -5,16 +6,17 @@
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
.menu-container {
|
.menu-container {
|
||||||
width: 5%;
|
width: 8%;
|
||||||
}
|
}
|
||||||
.main-content-container {
|
.main-content-container {
|
||||||
width: 95%;
|
width: 92%;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
}
|
}
|
||||||
.login-container {
|
.login-container {
|
||||||
top: 25vh;
|
top: 25vh;
|
||||||
}
|
}
|
||||||
/**/
|
|
||||||
|
/* Common CSS */
|
||||||
.cp {
|
.cp {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
@ -23,6 +25,18 @@
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
.white-well {
|
||||||
|
min-height: 20px;
|
||||||
|
padding: 19px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border: 1px solid #e3e3e3;
|
||||||
|
border-radius: 4px;
|
||||||
|
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
|
||||||
|
box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Side Menu */
|
||||||
.side-menu {
|
.side-menu {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
max-width: 100px;
|
max-width: 100px;
|
||||||
|
@ -35,8 +49,8 @@
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
.side-menu-button {
|
.side-menu-button {
|
||||||
width: 50px;
|
width: 65px;
|
||||||
height: 50px;
|
height: 65px;
|
||||||
}
|
}
|
||||||
.achievement-body {
|
.achievement-body {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -44,13 +58,13 @@
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.white-well {
|
.button-container.active .side-menu-button {
|
||||||
min-height: 20px;
|
background: steelblue;
|
||||||
padding: 19px;
|
color: white;
|
||||||
margin-bottom: 20px;
|
}
|
||||||
background-color: #FFFFFF;
|
.button-container.active .button-title {
|
||||||
border: 1px solid #e3e3e3;
|
color: steelblue;
|
||||||
border-radius: 4px;
|
}
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
|
.button-container a:hover {
|
||||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
app.directive('notificationDirective', function() {
|
app.directive('notificationDirective', function() {
|
||||||
return {
|
return {
|
||||||
templateUrl: "_notification-widget.html"
|
templateUrl: "templates/widgets/notification-widget.html"
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
app.directive('todoDirective', function() {
|
app.directive('todoDirective', function() {
|
||||||
return {
|
return {
|
||||||
templateUrl: "_todo-widget.html"
|
templateUrl: "templates/widgets/todo-widget.html"
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
app.directive('uploadDirective', function() {
|
app.directive('uploadDirective', function() {
|
||||||
return {
|
return {
|
||||||
templateUrl: "_upload-widget.html"
|
templateUrl: "templates/widgets/upload-widget.html"
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
<h4 class="text-center">Advanced Features Ahead</h4><br>
|
<h4 class="text-center">Advanced Features Ahead</h4><br>
|
||||||
<p class="text-center">This space is intended for<br> people that need more functionality<br> than the average bear</p><br>
|
<p class="text-center">This space is intended for<br> people that need more functionality<br> than the average bear</p><br>
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<a href="#!/home" class="btn btn-default"><link href="#">I'd like to go home, please</a><br><br>
|
<a ng-href="/#!/launchpad-home" class="btn btn-default">I'd like to go home, please</a><br><br>
|
||||||
<a ng-click="vm.unlock('honeybadger')">I don't care, let me through</a>
|
<a>I don't care, let me through</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue