-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
83 lines (77 loc) · 1.74 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
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
html {
height: 100%;
width: 100%;
margin: 0;
}
body {
background-color: #212121;
height: 100%;
width: 100%;
margin: 0;
}
viewport {
height: 100%;
width: 100%;
margin: 0;
}
#container {
height: 100%;
display: -webkit-flex;
display: -moz-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
-moz-justify-content: center;
justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
align-items: center;
}
#logo {
height: 250px;
}
#buttons {
margin-top: 5%;
display: -webkit-flex;
display: -moz-flex;
display: flex;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
flex-wrap: wrap;
width:344px;
}
.button {
margin: 8px;
padding: 15px;
padding-top: 12px;
padding-bottom: 8px;
background-color: #E0E0E0;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 1px 2px 2px #000;
-moz-box-shadow: 1px 2px 2px #000;
box-shadow: 1px 2px 2px #000;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.button:hover {
-webkit-box-shadow: 2px 4px 4px #000;
-moz-box-shadow: 2px 4px 4px #000;
box-shadow: 2px 4px 4px #000;
margin-top:6px;
margin-bottom:10px;
background-color: #fff;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.button img {
height: 40px;
width: 40px;
}