Newer
Older
2020-Y.ryusei / world.css
html{
  height: 100%;
}
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #c1e4e9;
}
header{
  width: 100%;
}
h2{
  text-align: center;
}
footer{
  width: 100%;
}
.left{
  width: 40%;
	float: left;
}
.center{
  wigth: 30%;
  float: left;
}
.right{
  width: 25%;
  float: right;
  text-align: right;
}
.flex{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.box{
  flex: auto;
  margin: 5px;
  width: 25%;
  border: solid 2px;
  border-radius: 20px;
  background-color: white;
}
.in_box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.side{
  flex: auto;
  margin: 5px;
}
img.side{
  width: 20%;
  height: 20%;
}
p.side{
  text-align: right;
}
.comment{
  border: dashed 2px;
  border-radius: 15px;
  margin: 5px;
  padding: 5px;
}