Skip to content

Commit

Permalink
Merge pull request #6 from onosAdmin/html_gui
Browse files Browse the repository at this point in the history
Html gui
  • Loading branch information
onosAdmin committed Nov 28, 2016
2 parents 10e4124 + ae35999 commit 20f6fc8
Show file tree
Hide file tree
Showing 8 changed files with 1,102 additions and 0 deletions.
244 changes: 244 additions & 0 deletions scripts_folder/html_develop/css/login.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,244 @@
@font-face {
font-family: 'rapier';
src: url('../fonts/rapier-zero.ttf') format('truetype');
}





.flex {max-width: 100%}

body{

font-family: rapier;
margin: 0px;
padding: 0px;

}

a, a:visited {text-decoration:none; color:white;}





@media screen and (min-width: 320px) /*iphone 6s, 6 plus portrait*/{
body {

background-color: #0072ca;

}


#logo {

position:relative;
top:0px;
width:100%;
margin-top:10px;
margin-bottom:30px;
}

.title{


text-align:center;
width:100%;
margin-left:auto;
margin-right:auto;
margin-bottom:30px;
font-size:30px;
}

.box-form{

text-align:center;
padding:30px;
margin:30px;
background-color:#043a91;
color:white;
border-radius: 15px 50px;
border: 2px solid black;

}

.textinput{

font-family: rapier;
padding:5px;
margin-top:10px;
margin-bottom:10px;
margin-left:auto;
margin-right:auto;
background-color: #0072ca;
border: 1px solid white;
border-radius: 3px;
color:#d0d6e0;


}


.login-button{

font-family: rapier;
width:150px;
margin-top:20px;
background-color: #0072ca;
color:#d0d6e0;
border-radius: 3px;

}

.login-button:hover {

font-weight:bold;
border-radius: 5px;

}

#register-button{

width:150px;
margin-top:20px;
margin-left:auto;
margin-right:auto;
background-color: #0072ca;
color:#d0d6e0;
border-radius: 3px;
border: 2px outset white;

}

#register-button:hover {

font-weight:bold;
border-radius: 5px;

}


}/*fine media iphone 6s 6plus */







@media screen and (min-width: 960px) /*laptop-desktop*/{
body {

width:412px;
background-color: #0072ca;
margin-left:auto;
margin-right:auto;
}


#logo {

position:relative;
top:0px;
width:100%;
margin-top:10px;
margin-bottom:30px;
}

.title{


text-align:center;
width:100%;
margin-left:auto;
margin-right:auto;
margin-bottom:30px;
font-size:30px;
}

.box-form{

text-align:center;
padding:30px;
margin:30px;
background-color:#043a91;
color:white;
border-radius: 15px 50px;
border: 2px solid black;

}

.textinput{

font-family: rapier;
padding:5px;
margin-top:10px;
margin-bottom:10px;
margin-left:auto;
margin-right:auto;
background-color: #0072ca;
border: 1px solid white;
border-radius: 3px;
color:#d0d6e0;


}


.login-button{

font-family: rapier;
width:150px;
margin-top:20px;
background-color: #0072ca;
color:#d0d6e0;
border-radius: 3px;

}

.login-button:hover {

font-weight:bold;
border-radius: 5px;

}

#register-button{

width:150px;
margin-top:20px;
margin-left:auto;
margin-right:auto;
background-color: #0072ca;
color:#d0d6e0;
border-radius: 3px;
border: 2px outset white;

}

#register-button:hover {

font-weight:bold;
border-radius: 5px;

}


}/*fine media iphone 6s 6plus */
















0 comments on commit 20f6fc8

Please sign in to comment.