-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
126 lines (113 loc) · 2.42 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@import url('https://fonts.googleapis.com/css?family=Lobster');
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300);
body{
padding: 20px 0;
color: #fff !important;
background: #CB356B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #BD3F32, #CB356B); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #BD3F32, #CB356B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.msg{
display: none;
}
.start{
background: #00b09b; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #96c93d, #00b09b); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #96c93d, #00b09b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color: #fff;
border: none;
outline: 0;
}
.img{
width: 50px;
height: 50px;
}
.title{
color: #fff;
font-size: 25px;
font-family: 'Lobster', cursive;
}
.wrapper{
text-align: center;
margin-top: 50px;
}
#social-platforms {
position:relative;
top:30px;
top:7vh;
font-size:1rem;
text-align:center;
overflow:hidden;
}
/*Pen code from this point on*/
.btn {
clear:both;
white-space:nowrap;
font-size:.8em;
display:inline-block;
margin:2px;
-webkit-transition:all .5s;
-moz-transition:all .5s;
transition:all .5s;
overflow:hidden
}
.btn:hover {
box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.45);
}
.btn:focus {
box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
}
.btn > span,.btn-icon > i {
float:left;
padding:13px 40px 13px 20px;
-webkit-transition:all .5s;
-moz-transition:all .5s;
transition:all .5s;
line-height:1em
}
.btn > span {
padding:14px 18px 16px;
white-space:nowrap;
color:#FFF;
background:#b8b8b8
}
.btn:focus > span {
background:#9a9a9a
}
.btn-icon > i {
border-radius:5px 0 0 5px;
position:relative;
width:13px;
text-align:center;
font-size:1.25em;
color:#fff;
background:#212121
}
.btn-icon > i:after {
content:"";
border:8px solid;
border-color:transparent transparent transparent #222;
position:absolute;
top:13px;
right:-15px
}
.btn-icon:hover > i,.btn-icon:focus > i {
color:#FFF
}
.btn-icon > span {
border-radius:0 5px 5px 0
}
/*Facebook*/
.btn-facebook:hover > i,.btn-facebook:focus > i {
color:#3b5998
}
.btn-facebook > span {
background:#3b5998
}
/*Instagram*/
.btn-instagram:hover > i,.btn-instagram:focus > i {
color:#AA3D4C
}
.btn-instagram > span {
background:#AA3D4C
}