-
Notifications
You must be signed in to change notification settings - Fork 0
/
hack-in-arena-2016.css
71 lines (59 loc) · 1.08 KB
/
hack-in-arena-2016.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
*, *:before, *:after {
box-sizing: inherit;
}
html {
font: 100% "Ubuntu",sans-serif;
height: 100%;
box-sizing: border-box;
}
body {
background-image: url(cover.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-color: #0D3B5B;
color: #fff;
}
.wrapper {
max-width: 960px;
margin: 150px auto 0px auto;
padding: 30px;
text-align: center;
height: 100%;
}
.description {
font-size: 1em;
text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.3);
transition: .5s all;
}
.logo img {
max-width: 100%;
height: auto;
}
.action a {
font-size: 1.2em;
color: white;
text-decoration: none;
border: 4px solid #fff;
border-radius: 6px;
padding: 5px 10px;
transition: .3s background;
}
.action a:hover {
background-color: #fff;
color: #0D3B5B;
}
.fb-like {
margin-left: 5px;
}
@media screen and (max-width: 480px) {
.description {
font-size: .8em;
}
.action a {
width: 100%;
}
.fb-like {
margin-top: 15px;
}
}