123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- * {
- margin: 0;
- padding: 0;
- font-family: 'Roboto', sans-serif;
- user-select: none;
- transition: .2s all;
- }
- body {
- padding-top: 77px;
- }
- /* header {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 10;
- padding: 20px;
- background-color: #2196F3;
- color: white;
- }
- header h1 {
- float: left;
- font-size: 20px;
- font-weight: 400;
- }
- header .material-icons {
- float: right;
- cursor: pointer;
- }
- header .icon-menu {
- float: left;
- margin-right: 20px;
- } */
- main {
- padding: 20px 50px;
- }
- .folder * {
- width: 100px;
- }
- .folder {
- float: left;
- width: 100px;
- height: 152px;
- /* //padding: 20px; */
- margin-right: 50px;
- margin-bottom: 70px;
- border-radius: 2px;
- /* //overflow: hidden; */
- cursor: pointer;
- }
- .folder:hover h1 {
- display: none;
- }
- .folder:hover p.cooltip {
- opacity: 1;
- top: 0;
- }
- .folder * {
- text-align: center;
- }
- .folder i {
- margin: 0;
- font-size: 100px;
- color: #607D8B;
- }
- .folder h1 {
- position: relative;
- display: block;
- top: -37px;
- font-size: 20px;
- font-weight: 400;
- }
- .folder p.cooltip {
- position: relative;
- top: 5px;
- left: -50%;
- margin-left: 35px;
- background: #212121;
- font-size: 15px;
- color: white;
- border-radius: 4px;
- padding: 10px 20px;
- padding-right: 30px;
- width: 100px;
- opacity: 0;
- }
- .folder p.cooltip:before {
- content: '';
- position: absolute;
- display: block;
- top: -4px;
- left: 50%;
- margin-left: -5px;
- height: 10px;
- width: 10px;
- border-radius: 2px;
- background-color: #212121;
- transform: rotate(45deg);
- }
- div.properties {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 10;
- width: 300px;
- background-color: white;
- }
- div.properties:before {
- content: '';
- position: fixed;
- top: 0;
- left: 0;
- right: 300px;
- bottom: 0;
- background-color: #212121;
- opacity: .5;
- overflow: hidden;
- }
- div.properties img {
- position: relative;
- top: -1px;
- left: -1px;
- width: 110%;
- height: 200px;
- filter: blur(2px);
- }
- div.properties h1 {
- position: relative;
- width: 100%;
- text-align: left;
- margin-left: 20px;
- color: white;
- }
- header {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- padding: 20px;
- background-color: #2196F3;
- color: white;
- display: flex;
- align-items: center;
- }
- header h1 {
- font-weight: 400;
- }
- header span {
- flex: 1;
- }
- header i {
- margin: 0 10px;
- cursor: pointer;
- }
- header i:nth-child(1) {
- margin: 0 20px;
- }
|