UNPKG

@zigbang/honeyfarm-master

Version:

## DASH BOARD HoneyFarm Node에 등록 되어 있는 안드로이드 단말을 웹페이지에서 실시간으로 확인 및 사용 할수 있도록 구현된 웹

59 lines (54 loc) 1.41 kB
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Dashboard</title> <style> .page { background-color: rgb(248, 248, 248); height: 100%; width: 100%; color: rgb(248, 248, 248); } .page_container { background-color: rgb(248, 248, 248); height: auto; width: auto; display: inline; color: rgb(248, 248, 248); } .view_container { height: fit-content; width: 500px; display: inline-block; padding-top: 40px; align-items: center; } .title { display: block; color: rgb(51, 51, 51); font-size: 18px; font-weight: 400; font-family: monospace; } .title_view { width: fit-content; height: fit-content; background-color: white; margin:0 52px 20px 0; padding: 10px; float: right; border-radius: 7px; box-shadow:5px 5px 15px -3px #999; align-items: center; } </style> </head> <body> <div class="page"> <div class="page_container"> </div> </div> </body> </html>