-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (49 loc) · 974 Bytes
/
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
html,
body {
height: 100vh;
background-color: #FEBC58;
}
.container {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background-color: #FEBC58;
}
.random-beer {
margin-top: 150px;
color: white;
font-size: 30px;
font-family: helvetica;
}
.description {
max-width: 600px;
color: #f7ecb7;
font-family: helvetica;
font-szie: 20px;
}
.beer-button {
display: inline-flex;
}
.beer-button a{
display: inline-block;
text-decoration: none;
background-color: #FEBC58;
box-shadow: -8px -8px 12px 0 rgba(0, 0, 0, 0.3),
12px 12px 16px rgba(255, 255, 255, 0.25);
border-radius: 50%;
width: 80px;
height: 80px;
transition: 0.5s;
display: flex;
align-items: center;
justify-content: center;
}
.beer-button a:hover {
box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, 0.2),
inset -6px -6px 10px 0 rgba(255, 255, 255, 0.5),
}
.beer-button .fab {
padding-left: 3px;
}