-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (119 loc) · 1.89 KB
/
style.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
margin: 0;
}
#pics {
position: relative;
overflow-x: hidden;
}
img {
position: absolute;
height: 177px;
top: 0;
left: 0;
opacity: 0;
transition: opacity 1s ease-in;
}
img.fade-in {
opacity: 1;
}
.nodebot{
z-index:2;
opacity: 1;
width:100px;
height:100px;
background-color: #F8E01E;
position:fixed;
bottom: 30px;
right: 30px;
box-shadow: 0 0 1em #000;
}
.nodebot .icon{
position:absolute;
bottom:8%;
right:8%;
width:45.6%;
height:50%;
}
.nodebot .icon * {
background: #2e2e2c;
}
.nodebot .icon .bobble{
width:12.5%;
height:12%;
border-radius: 100%;
margin:5% auto -3.8%;
}
.nodebot .antenna{
width:6%;
margin:0 auto 4%;
height:16.5%;
border-bottom-left-radius: 80% 30%;
border-bottom-right-radius: 80% 30%;
}
.nodebot .head{
width: 100%;
height: 48.5%;
border-top-left-radius: 15% 25%;
border-top-right-radius: 15% 25%;
position:relative;
}
.nodebot .head .eye{
width:18%;
height:33.5%;
margin:0 18.2%;
border-radius: 100%;
background-color: #F8E01E;
display: inline-block;
position:absolute;
top:26%;
left: 0px;
-webkit-animation: blink 5s 2s infinite;
animation: blink 5s 2s infinite;
}
.nodebot .eye.right{
left: auto;
right:0;
}
.nodebot .head .eye.blink {
height: 6%;
top:36%;
border-radius: 0;
background-color: #000;
}
.nodebot .neck{
border-radius: 20px;
width: 69%;
height: 6%;
margin: 3.6% auto 0;
}
.nodebot .neck:last-child{
width: 48%;
}
@-webkit-keyframes blink {
0%, 4%, 8%, 100%{
height:33.5%;
border-radius: 100%;
background-color: #F8E01E;
top:26%;
}
2%, 6% {
height: 6%;
top:36%;
border-radius: 0;
background-color: #000;
}
}
@keyframes blink {
0%, 4%, 8%, 100%{
height:33.5%;
border-radius: 100%;
background-color: #F8E01E;
top:26%;
}
2%, 6% {
height: 6%;
top:36%;
border-radius: 0;
background-color: #000;
}
}