-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e980bab
commit f9e2fc6
Showing
6 changed files
with
115 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,64 @@ | ||
body { | ||
background-color: #fffbf6 !important; | ||
} | ||
|
||
.need-help-link { | ||
text-align: right; | ||
position:absolute; | ||
bottom:0; | ||
right:0; | ||
padding-right: 3%; | ||
padding-bottom: 1%; | ||
} | ||
|
||
.msg { | ||
margin-top: 6%; | ||
text-align: center; | ||
} | ||
|
||
.large-header { | ||
padding-top: 10%; | ||
padding-bottom: 10%; | ||
} | ||
|
||
.vertical-center { | ||
background-color: #fffbf6 !important; | ||
min-height: 100%; /* Fallback for browsers do NOT support vh unit */ | ||
min-height: 100vh; /* These two lines are counted as one :-) */ | ||
|
||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.icon-col { | ||
margin-right:0%; | ||
padding-right: 0%; | ||
padding-left: 1%; | ||
opacity: 0.8; | ||
} | ||
|
||
.text-col { | ||
padding-left: 2.5%; | ||
opacity: 0.8; | ||
} | ||
|
||
.icon-col:hover { | ||
opacity: 1; | ||
} | ||
|
||
.text-col:hover { | ||
opacity: 1; | ||
} | ||
|
||
.descriptive-option { | ||
padding-top: 2%; | ||
padding-bottom: 2%; | ||
/* margin-top: 5%; */ | ||
height: 20%; | ||
/* table-layout: fixed; */ | ||
} | ||
|
||
.descriptive-option:hover { | ||
background: #f8f2eb; | ||
cursor: pointer; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,19 +8,45 @@ | |
</head> | ||
|
||
<body> | ||
<div class="container-fluid"> | ||
<div class="container"> | ||
<div class="container"> | ||
<p class="msg">Not implemented yet :(</p> | ||
<div class="col-sm"> | ||
<button id="close-btn" type="submit" class="btn btn-primary float-right">close</button> | ||
<div class="container large-header"> | ||
<h2>Create new server</h2> | ||
Choose an option to proceed | ||
</div> | ||
</div> | ||
<div class="container descriptive-option" id="beginnerUser"> | ||
<div class="row"> | ||
<div class="col-xs-1 my-auto icon-col"> | ||
<i class="fas fa-play fa-2x fa-fw"></i> | ||
</div> | ||
<div class="col-xs-11 text-col"> | ||
<h4>Beginner</h4> | ||
I just need local JupyterLab running | ||
</div> | ||
</div> | ||
</div> | ||
<div class="container descriptive-option" id="advancedUser"> | ||
<div class="row"> | ||
<div class="col-xs-1 my-auto icon-col"> | ||
<i class="fas fa-cogs fa-2x fa-fw"></i> | ||
</div> | ||
<div class="col-xs-11 text-col"> | ||
<h4>Advanced user</h4> | ||
I want to make sure everything is right | ||
</div> | ||
</div> | ||
</div> | ||
<div class="need-help-link"> | ||
<a href="javascript:void">Need help?</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="./newserver.js"></script> | ||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/umd/popper.js" integrity="sha384-fA23ZRQ3G/J53mElWqVJEGJzU0sTs+SvzG8fXVWP+kJQ1lwFAOkcUOysnlKJC33U" crossorigin="anonymous"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/js/bootstrap-material-design.js" integrity="sha384-CauSuKpEqAFajSpkdjv3z9t8E7RlpJ1UP0lKM/+NdtSarroVKu069AlsRPKkFBz9" crossorigin="anonymous"></script> | ||
<script src="https://kit.fontawesome.com/ad56bed05a.js" crossorigin="anonymous"></script> | ||
<script>$(document).ready(function() { $('body').bootstrapMaterialDesign(); });</script> | ||
</body> | ||
|
||
|