forked from Krafalski/hfb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
81 lines (71 loc) · 1.43 KB
/
main.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
/*****************************************
* General
*****************************************/
body {
margin-top:20px;
font-family: Osaka;
background-color: skyblue;
color: #262626;
}
h2, h3, h5 {
text-align: center;
}
h4 {
text-align:justify;
}
button {
padding:10px;
}
li {
text-align: left;
}
a {
text-align: center;
color: whitesmoke;
text-decoration: none;
}
#container {
max-width:80%;
margin: auto;
}
/*****************************************
* Happy Fun Ball
*****************************************/
#happy-fun-ball {
min-width: 20vmax;
height: 20vmax;
border-radius:100%;
background-color: #FF8E00;
text-align: left;
background-image: radial-gradient(circle, #ffcd8d, orange);
box-shadow: 4px 4px 8px orange, -4px -4px 8px orange, 4px -4px 8px orange, -4px 4px 8px orange;
text-align: center;
vertical-align: middle;
}
#happy-fun-ball p{
line-height: 20vmax;
color: rgba(255, 255, 255, 0.1);
}
#happy-fun-ball:hover{
background-image: radial-gradient(circle, orange, #ffcd8d);
box-shadow: 4px 4px 8px white, -4px -4px 8px white, 4px -4px 8px white, -4px 4px 8px white;
}
#happy-fun-ball:hover p {
color: rgba( 0, 0, 0, 0);
}
#special-container {
display:inline-block;
}
h1 {
display: inline-block;
vertical-align: center;
font-family: 'Marker Felt';
position: absolute;
left: 35vmax;
top: 25px;
font-size: 8vmax;
text-align: left;
}
.price {
color: navy;
}