You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
785 B
CSS
46 lines
785 B
CSS
*{
|
|
font-family: 'Noto Sans Georgian', sans-serif !important;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
body{
|
|
background-image: url(./images/sunset.jpeg);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
|
|
}
|
|
/*
|
|
html,body{
|
|
display: inline-block;
|
|
height: 60px;
|
|
width: 60px;
|
|
float: left;
|
|
margin: 0 5px;
|
|
overflow: hidden;
|
|
background-color: #fff;
|
|
border-radius: 50px;
|
|
cursor: pointer;
|
|
box-shadow: 0px 10px 10px;
|
|
rgba(0,0,0,0.1);
|
|
transition: all 0.3s ease-out;
|
|
|
|
}
|
|
.wrapper.button:hover{
|
|
width: 200px;
|
|
|
|
}
|
|
.wrapper.button.icon{
|
|
display: inline-block;
|
|
height: 60px;
|
|
width: 60px;
|
|
text-align: center;
|
|
border-radius: 50px;
|
|
box-sizing: border-box;
|
|
line-height: 60px;
|
|
transition: all 0.3s ease-out;
|
|
}
|
|
.wrapper.button:nth-child
|
|
*/ |