-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
46 lines (42 loc) · 786 Bytes
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
*{
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
*/