| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- *{margin:0;padding:0;box-sizing:border-box;}
- body{
- display: flex;
- height: 100vh;
- width: 100vw;
- overflow-y: hidden;
- }
- header{
- display: flex;
- flex-direction: column;
- flex-basis: 350px;
- background: black;
- color: white;
- height: 100%;
- padding: 35px;
- }
- header a{
- color: rgb(200, 200, 200);
- text-decoration: none;
- }
- .headMain{
- font-size: 22px;
- font-weight: bold;
- }
- .headSub{
- padding-left: 15px;
- }
- .container, #container{
- flex-grow: 1;
- height: 100%;
- overflow-y: auto;
- background: rgb(200, 200, 200);
- padding: 35px;
- }
- article{
- border-bottom: 2px solid black;
- margin-bottom: 35px;
- }
- .prop{
- padding: 15px 25px;
- border-top: 1px solid black;
- }
- .name, .type{
- display: inline-block;
- }
- .name{
- font-weight: bold;
- }
- .type{
- margin-left: 15px;
- font-size: 12px;
- }
- .url{
- font-size: 18px;
- }
- ul{
- display: inline-block;
- border: 1px solid black;
- padding: 5px 10px;
- margin: 10px 0 0 15px;
- position: relative;
- }
- .ulTitle{
- position: absolute;
- top: -7px;
- left: -7px;
- font-size: 12px;
- background: rgb(200, 200, 200);
- list-style-type: none;
- }
- li{
- margin-left: 20px;
- }
|