-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (111 loc) · 3.06 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
122
123
124
body {
background-image: url(images/bg.jpg);
background-repeat: repeat;
background-size: 1920px 1080px;
font-family: arial;
}
h1 {
font-size: 60px;
font-weight: bold;
text-align: center;
margin: 10px 0;
margin-top: 30px;
text-transform: uppercase;
color: #e7e7e7;
text-shadow: 1.5px 1.5px 0 #333, 0px 1.5px 0 #333, -1.5px -1.5px 0 #333, -1.5px -1.5px 0 #333, -1.5px 1.5px 0 #333, 1.5px -1.5px 0 #333, 0.7778174593px 0.7778174593px 0 #aaaaaa, 1.5556349186px 1.5556349186px 0 #aaaaaa, 2.3334523779px 2.3334523779px 0 #aaaaaa, 3.1112698372px 3.1112698372px 0 #aaaaaa, 3.8890872965px 3.8890872965px 0 #aaaaaa, 4.6669047558px 4.6669047558px 0 #aaaaaa, 5.4447222151px 5.4447222151px 0 #aaaaaa, 6.2225396744px 6.2225396744px 0 #aaaaaa, 7.0003571337px 7.0003571337px 0 #aaaaaa, 7.7781745931px 7.7781745931px 0 #aaaaaa;
}
.container {
width: 600px;
margin: auto;
padding: 20px;
position: relative;
}
.area-komputer {
width: 560px;
height: 250px;
margin: 5px auto;
/* background-color: lightblue;
background: linear-gradient(to bottom, rgba(179, 220, 237, 1) 0%, rgba(41, 184, 229, 1) 100%); */
position: relative;
padding-top: 40px;
box-sizing: border-box;
border-radius: 40px 40px 0 0;
}
.area-player {
width: 560px;
height: 250px;
margin: 5px auto;
/* background-color: lightgreen;
background: linear-gradient(to bottom, rgba(210, 255, 82, 1) 0%, rgba(145, 232, 66, 1) 100%); */
position: relative;
border-radius: 0 0 40px 40px;
}
.info {
width: 150px;
height: 60px;
/* border: 5px solid rgb(46, 39, 38); */
position: absolute;
left: 50%;
margin-left: -75px;
top: 50%;
margin-top: -30px;
/* background-color: white; */
border-radius: 30px;
z-index: 1;
text-align: center;
line-height: 60px;
color: #000000;
font-size: 30px;
text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
font-family: 'Fredericka the Great', cursive;
}
ul {
padding-top: 80px;
padding-left: 25px;
}
li {
display: inline-block;
margin: 0 18px;
}
img {
width: 130px;
height: 130px;
display: block;
margin: auto;
border-radius: 5%;
}
/* library (hover effect) */
/* https://github.com/IanLunn/Hover */
@keyframes hvr-pulse {
25% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
75% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
}
.hvr-pulse {
display: inline-block;
/* vertical-align: middle; */
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
cursor: pointer;
}
.hvr-pulse:hover,
.hvr-pulse:focus,
.hvr-pulse:active {
-webkit-animation-name: hvr-pulse;
animation-name: hvr-pulse;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.playing {
opacity: 0.6;
}