-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
86 lines (85 loc) · 1.48 KB
/
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
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
84
85
86
html, body{
background: url(image/bg.jpg) center center no-repeat;
height: 100%;
width:100vw;
}
#logo img{
padding-top: 20px;
}
#info p{
color: white;
text-align: center;
font-family: 'Just Another Hand', cursive;
font-size: 1.8em;
}
#counter .countdown{
color: white;
text-align: center;
font-family: 'Just Another Hand', cursive;
font-size: 3em;
}
#social ul{
display: block;
list-style-type: none;
text-align: center;
}
#social ul li{
display: inline;
}
#social .fa{
color: white;
margin: 5px 15px;
position: relative;
bottom: 0;
transition: all .2s ease-in-out;
}
#social .twitter i:hover{
color: #00aced;
bottom: 5px;
}
#social .facebook i:hover{
color: #3b5998;
bottom: 5px;
}
#social .google i:hover{
color: #dd4b39;
bottom: 5px;
}
#social .instagram i:hover{
color: #bc2a8d;
bottom: 5px;
}
#signup{
text-align: center;
margin-top: 20px;
}
#signup .form-inline{
display: block;
}
#signup .btn-signup{
color: white;
background-color: rgba(161,186,226,0.7);
}
#signup .btn-signup:hover{
background-color: rgba(37,165,82,1);
}
@media(max-width:768px) {
#logo img{
width: 50%;
}
#counter .countdown{
color: white;
font-size: 1.4em;
}
#social .fa{
margin: 10px 0 0;
font-size: 2em;
}
#signup .btn-signup{
margin-top: 20px;
}
}
@media(max-width:768px) and (orientation: landscape){
#signup .btn-signup{
margin-top: 0;
}