Skip to content
Permalink
1544322e8f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
201 lines (166 sloc) 2.78 KB
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Inconsolata:700');
*{
margin:0;
padding:0;
}
/* hello */
html, body, input[name='fileName'] {
font-family: 'Public Sans', sans-serif;
height: 100%;
position: relative;
color: black;
font-size: 20px;
font-weight: bold;
background: white;
}
body {
min-width: 800px;
width: auto;
}
header {
position: relative;
width: 100%;
height: 130px;
}
#logo {
position: absolute;
left: 30px;
height: 125px;
width: auto;
}
.avatar {
border-radius: 200px;
box-sizing: border-box;
padding: 5px;
background-color: rgb(230, 230, 230);
width: 50px;
height: auto;
}
#nav1{
position: absolute;
top: 50%;
right: 3%;
margin-top: -25px;
}
#nav1 a {
color: white;
vertical-align: middle;
font-size: 14px;
text-decoration: none;
}
#nav1 span {
vertical-align: middle;
margin-left: 5px;
}
#nav1Top {
border-bottom: 1px solid white;
}
#nav1 ul {
width: 95px;
margin: 0;
padding: 0;
position: absolute;
top: 110%;
left: 50%;
margin-left: -55px;
transition: all 0.3s;
visibility: hidden;
opacity: 0;
background-color: #11B8FF;
/* background-color: rgb(230, 230, 230); */
border-radius: 10px 10px 10px 10px;
padding: 0 5px 0 5px;
z-index: 1;
}
#nav1 ul li {
list-style-type: none;
padding: 15px 5px 15px 5px;
}
#nav1:hover ul{
opacity: 1;
visibility: visible;
}
.navImg {
height: 20px;
width: auto;
color: white;
float: left;
vertical-align: middle;
}
#nav2 {
font-size: 22px;
float: left;
border-radius: 0 70px 0 0;
width: 250px;
height: inherit;
background:#11B8FF;
}
#nav2 ul {
margin: 35px 0 0 35px;
padding: 0;
list-style-type: none;
}
#nav2 a {
color: rgb(0, 127, 182);
text-decoration: none;
}
#nav2 a.active {
color: white;
}
#nav2 li {
padding: 20px 0 20px 0;
}
#info {
font-size: 15px;
text-align: center;
}
#UserInformation {
overflow: hidden;
height: inherit;
padding: 40px 80px 0 80px;
}
#tableHead {
display: inline-block;
position: relative;
/* min-width: 380px; */
width: 100%;
}
#tableHead h1 {
font-size: 30px;
float: left;
}
table {
margin-top: 30px;
border-collapse: collapse;
width: 100%;
min-width: 380px;
text-align: left;
vertical-align: middle;
/* height: 100%; */
}
#headRow th{
color: rgb(202, 202, 202);
}
#headRow {
border-bottom: 0px;
}
table tr {
height: 30px;
/* border-bottom: 1px solid gray; */
}
table tr td {
padding: 20px 0 20px 0;
}
.UserName {
width: 10%;
}
.UserID {
width: 5%;
}
.UserHash {
width: 45%;
}
.UserPassword {
width: 5%;
}