-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
137 lines (134 loc) · 2.44 KB
/
main.css
File metadata and controls
137 lines (134 loc) · 2.44 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
@import url(https://fonts.googleapis.com/css?family=Share+Tech+Mono);
*{
box-sizing:border-box;
color:inherit;
text-decoration:none;
}
h1{
display:block;
float:left;
width:200px;
height:80px;
font-size:3em;
font-family:"Share Tech Mono", sans-serif;
color:#444;
text-shadow:0 1px 0;
line-height:2;
}
#show{
width:305px;
margin:130px auto;
height:5px;
animation:upAndDown 2.5s ease-in-out infinite;
}
#show:after{
content:'';
position:absolute;
width:305px;
margin:20px -260px;
height:5px;
border-radius:10000%;
box-shadow:0 160px 40px rgba(0,0,0,0.8);
animation:upAndDownS 2.5s ease-in-out infinite;
}
/**/
#iconTd{
transform:scale(.6);
width:105px;
height:137px;
margin: 0;
padding:0px;
position:relative;
z-index:-1;
overflow:hidden;
float:left;
}
#iconTd:before{
content:'';
display:block;
border-radius:20px;
position:absolute;
background:-webkit-linear-gradient(top,#E00D0E,#800809);
width:80px;height:20px;
margin:-5px 13px;
z-index:20;
}
#iconTd:after{
content:'';
display:block;
border-radius:20px;
position:absolute;
background:-webkit-linear-gradient(top,#E00D0E,#800809);
width:80px;height:60px;
margin:-20px 13px;
z-index:20;
}
#jarvisJs{
display:block;
width:105px;
height:140px;
background:;
border:3px solid #E00D0E;
overflow:hidden;
border-radius:20px;
margin:-1px 0;
background:-webkit-linear-gradient(-45deg,#E1B94A,#E1B94A, #ba984e);
}
#jarvisJs:before,#jarvisJs:after{
background:-webkit-linear-gradient(top,#E00D0E,#800809);
}
#jarvisJs:before{
content:'';
display:block;
border-radius:40px;
width:100px;height:100px;
margin:20px -85px
}
#jarvisJs:after{
content:'';
display:block;
border-radius:40px;
width:100px;height:100px;
margin:-120px 85px
}
.eyes{
display:block;
}
.eyes:before,.eyes:after{
display:block;
content:'';
width:25px;
height:4px;
position:absolute;
background:#cfebf6;
box-shadow:0 2px 3px #4696eb ;
border-radius:9Ò0%;
}
.eyes:before{
margin:45px 20px;
transform:rotate(15deg)
}
.eyes:after{
margin:45px 63px;
transform:rotate(-15deg)
}
.mouth{
display:block;
width:84px;
height:40px;
border:2px solid #800809;
position:absolute;
margin:-36px 8px;
border-radius:40%
}
@keyframes upAndDown{
66%{ transform: translateY(-25px); }
}
@keyframes upAndDownS{
66%
{
width:240px;
transform: translateY(20px);
box-shadow:0 160px 40px rgba(0,0,0,0.4);
}
}