-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (100 loc) · 2.96 KB
/
style.css
File metadata and controls
102 lines (100 loc) · 2.96 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
body {
font-family: "Dosis", sans-serif;
text-align: center;
}
#menu {
width: 150px;
height: 150px;
position: absolute;
left: 50%;
top: 50%;
margin: -75px 0 0 -75px;
list-style: none;
font-size: 200%;
}
.menu-button{
opacity: 0;
z-index: -1;
}
.menu-button {
width: 150px;
height: 150px;
position: absolute;
left: 50%;
top: 50%;
margin: -75px 0 0 -75px;
border-radius: 50%;
background: #F48484;
background-size: 100%;
overflow: hidden;
text-decoration: none;
}
#menu:not(:target)>a:first-of-type,
#menu:target>a:last-of-type{
opacity: 1;
z-index: 1;
}
#menu:not(:target)>.icon-plus:before,
#menu:target>.icon.mnus:before{
opacity: 1;
}
.menu-item {
width:70px;
height:70px;
position: absolute;
left: 55%;
line-height: 5px;
top:50%;
margin: -50px 0 0 -50px;
border-radius: 50%;
background-color: #F48484;
transform: translate(0px, 0px);
transition: transform 500ms;
z-index: -2;
transition: .5s;
}
.menu-item:hover {
opacity: 0.5;
box-shadow: 0 5px 10px black;
}
.menu-item a{
color: #ffffff;
position: relative;
top: 30%;
left: 0;
text-decoration: none;
}
#menu:target>.menu-item:nth-child(6) {
transform: rotate(60deg)
translateY(-150px)
rotate(300deg);
transition-delay: 0s;
}
#menu:target>.menu-item:nth-child(5) {
transform: rotate(20deg)
translateY(-155px)
rotate(-20deg);
transition-delay: 0.1s;
}
#menu:target>.menu-item:nth-child(3) {
transform: rotate(-20deg)
translateY(-155px)
rotate(20deg);
transition-delay: 0.2s;
}
#menu:target>.menu-item:nth-child(4) {
transform: rotate(-60deg)
translateY(-150px)
rotate(60deg);
transition-delay: 0.3s;
}
html{
background: rgba(232,210,166,1);
background: -moz-linear-gradient(-45deg, rgba(232,210,166,1) 0%, rgba(232,210,166,1) 12%, rgba(41,184,229,1) 79%, rgba(244,132,132,1) 91%, rgba(244,132,132,1) 100%);
background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(232,210,166,1)), color-stop(12%, rgba(232,210,166,1)), color-stop(79%, rgba(41,184,229,1)), color-stop(91%, rgba(244,132,132,1)), color-stop(100%, rgba(244,132,132,1)));
background: -webkit-linear-gradient(-45deg, rgba(232,210,166,1) 0%, rgba(232,210,166,1) 12%, rgba(41,184,229,1) 79%, rgba(244,132,132,1) 91%, rgba(244,132,132,1) 100%);
background: -o-linear-gradient(-45deg, rgba(232,210,166,1) 0%, rgba(232,210,166,1) 12%, rgba(41,184,229,1) 79%, rgba(244,132,132,1) 91%, rgba(244,132,132,1) 100%);
background: -ms-linear-gradient(-45deg, rgba(232,210,166,1) 0%, rgba(232,210,166,1) 12%, rgba(41,184,229,1) 79%, rgba(244,132,132,1) 91%, rgba(244,132,132,1) 100%);
background: linear-gradient(135deg, rgba(232,210,166,1) 0%, rgba(232,210,166,1) 12%, rgba(41,184,229,1) 79%, rgba(244,132,132,1) 91%, rgba(244,132,132,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8d2a6', endColorstr='#f48484', GradientType=1 );
}