forked from GediminasMasaitis/PokeEase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
58 lines (49 loc) · 1.01 KB
/
styles.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
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,900,300,100);
* {font-family: Lato;}
body {
background: url(http://i.imgur.com/bZlpljL.jpg); background-size: cover;
}
.menu {
background: rgba(52, 66, 79, 0.9);
}
#menu {
position: fixed;
left: 0;
top: 0;
bottom: 0;
width: 200px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
color: white;
}
.container.center {
display: table;
width: 100%;
height: 100%;
}
.container.center > div {
display: table-cell;
vertical-align: middle;
text-align: center;
}
#menu .item {
width: 100px;
height: 100px;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
display: inline-block;
border-radius: 100%;
position: relative;
}
#menu .item .counter {
position: absolute;
left: 0;
top: 0;
background: white;
font-size: 14px;
border-radius: 20px;
color: black;
padding: 1px 6px 3px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#menu .item#pokemons {
background: #7db620;
}