Spaces:
Paused
Paused
File size: 1,949 Bytes
8b454b3 3de2740 8b454b3 3de2740 8b454b3 3de2740 |
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 107 108 109 110 111 112 |
/*Narbar on top of the page of the legend*/
.graynavbarLegend{
background-color: #b2b2b2;
height: 35px;
position: fixed;
width: 100%;
}
.graynavbarLegend label{
float: left;
display: block;
color: black;
text-align: center;
/* padding: 7px 16px; */
text-decoration: none;
font-family: "acumin-pro", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 16px;
margin-left: 7px;
}
.graynavbarLegend .label2{
color: blue;
}
/*Sorting buttons*/
.sortbutton{
background-color: transparent;
border: transparent;
}
/******************************/
#createdTimeDiv{
vertical-align: top;
display: inline-block;
}
#prjname, #prjpart, #prjsec{
font-size: 15px;
font-family: "acumin-pro", sans-serif;
margin-bottom: 10px;
margin-left: 5px;
cursor: pointer;
font-weight: bold;
}
.legendtime{
margin-left: 54%;
}
.legendtime .EditTime{
margin-left: 90px;
}
#legendtimediv{
margin-left: 17%;
display: inline-block;
/* float: right; */
/* position: absolute; */
}
#legendtimediv:before {
content: '';
width: 10%;
min-width: 100px;
max-width: 200px;
display: inline-block;
}
#legendmodtime{
margin-left: 50px;
}
#legendmodtime:hover , #legendtime:hover , #legend:hover{
cursor: pointer;
}
#legendlbldivwhole:hover{
background-color: lightblue;
cursor: pointer;
font-family: "acumin-pro", sans-serif;
}
#legendlbldivwhole{
font-family: "acumin-pro", sans-serif;
}
.legendclass{
color: blue;
text-decoration-line: underline;
max-width: 40ch;
width:40ch;
word-wrap: break-word;
}
#allprjdiv{
position: absolute;
margin-top: 40px;
z-index: -1;
}
.infotip{
justify-content: center;
font-family: "acumin-pro", sans-serif;
color:red;
}
#CreatesortDesc , #EditsortDesc , #CreatesortAsc, #EditsortAsc{
margin-top: 5px;
}
#CreatesortDesc:hover , #EditsortDesc:hover , #CreatesortAsc:hover, #EditsortAsc:hover{
color:gray;
cursor: pointer;
}
|