File size: 1,825 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
/* PHASE 1: Header */
.header {
width:100%;
background-color: #3b5998;
background-image: linear-gradient(#4e69a2, #3b5998 50%);
border-bottom: 1px solid #133783;
min-height: 42px;
position: fixed;
z-index: 1;
color: #fff;
}
.header nav{
width: 980px;
display: flex;
margin: auto;
justify-content: space-between;
}
.header nav h2{
font-size: 40px;
font-weight: bolder;
font-family: "Lucida Grande", sans-serif;
padding: 25px 20px 0px 0px;
margin-bottom: 10px;
display:flex;
}
.header nav div {
display: flex;
justify-content: flex-end;
align-items: baseline;
}
.header nav form{
width: 450px;
display: flex;
padding: 15px 0 0 0;
justify-content: flex-end;
position:relative;
}
.login-label-div{
position:relative;
}
.login-label-div label{
font-family: "Lucida Grande", sans-serif;
font-size: 12px;
display: block;
padding: 0 10px 5px 5px;
color: #fff;
font-weight: normal;
}
.login-label-div label input{
color: black;
background-color: #fff;
border-color: #1d2a5b;
margin-top: 5px;
height: 20px;
width: 142px;
display: block;
border-width: thin;
border-style: solid;
border-color: #29487d;
}
.header div button{
font-family: "Lucida Grande", sans-serif;
background-color: #4267b2;
text-align: center;
font-size: 12px;
font-weight: normal;
box-sizing: border-box;
border-radius: 2px;
border-width: thin;
border-style: solid;
border-color: #29487d;
padding: 1px 10px;
margin-top: 22px;
height: 22px;
cursor: pointer;
}
.header li {
color:red;
text-align: center;
font-family: "Lucida Grande", sans-serif;
font-size: 15px;
align-items: center;
position: absolute;
top: 60px;
left:750px;
}
.forgot-password{
margin-left: 2px;
color:#9cb4d8;
padding-top:5px;
font-size: 10px;
}
|