wolegca.github.io/index.css

47 lines
719 B
CSS
Raw Normal View History

2019-09-09 17:19:35 +08:00
html {
margin: 0;
padding: 0;
height: 100%
}
body {
margin: 0;
padding: 0;
min-height: 100%;
2019-09-09 17:57:54 +08:00
position:relative;
2019-09-09 17:19:35 +08:00
background-image: url(/star-catcher-astronaut-catching-stars-for-research-astronaut.jpg);
background-size: cover;
2019-09-09 17:22:42 +08:00
background-repeat: repeat-y;
background-position: center
2019-09-09 17:57:54 +08:00
}
.menu-container {
2019-09-09 18:11:41 +08:00
position: absolute;
2019-09-09 17:57:54 +08:00
height:100%;
float:left;
width:100%;
}
.menu-container ul {
display: block;
text-decoration: none;
2019-09-09 18:00:48 +08:00
list-style: none;
2019-09-09 18:11:41 +08:00
}
.menu-button {
height:50px;
width:50px;
display: block;
2019-09-09 18:15:12 +08:00
box-sizing: border-box;
border:1px solid #ccc;
border-radius: 10%
2019-09-09 18:11:41 +08:00
}
.menu-button span{
display:block;
width:40px;
height:10px;
margin:5px auto;
2019-09-09 18:15:12 +08:00
background-color:#ccc;
border-radius:10%
2019-09-09 17:19:35 +08:00
}