-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
155 lines (141 loc) · 3.09 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* Place your styles here */
*, input, button{
font-family:"Roboto Slab";
}
.ad{
width:300px;
height:250px;
overflow:hidden; /* elements won’t spill outside of the ad */
position:relative; /* make it easier to position elements */
background-color:#efefef;
color:#3A3A3A;
}
.h1-background{
color:white;
background-color:#4285F4;
padding-top:20px;
padding-bottom:20px;
padding-left:10px;
padding-right:10px;
text-align:center;
}
h1{
position:relative;
font-size: 32px;
-moz-animation-name: dropHeader;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: ease-out;
-moz-animation-duration: 0.5s;
-webkit-animation-name: dropHeader;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-out;
-webkit-animation-duration: 0.5s;
animation-name: dropHeader;
animation-iteration-count: 1;
animation-timing-function: ease-out;
animation-duration: 0.5s;
}
@-moz-keyframes dropHeader {
0% {
-moz-transform: translateY(50px);
opacity :0;
}
100% {
-moz-transform: translateY(0);
opacity:1;
}
}
@-webkit-keyframes dropHeader {
0% {
-webkit-transform: translateY(50px);
opacity :0;
}
100% {
-webkit-transform: translateY(0);
opacity:1;
}
}
@keyframes dropHeader {
0% {
transform: translateY(50px);
opacity :0;
}
100% {
transform: translateY(0);
opacity :1;
}
}
.company-logo
{
width:50px;
position:relative;
top:10px;
}
button{
padding:10px 20px; /* give the button some padding */
font-size:24px; /* expand the font size */
background-color:#4285F4;
border:none; /* Remove the default border */
color:white;
margin:auto; /* Centers the button */
margin-top:10px;
display:block;
position:relative; /* Position relatively for animation */
cursor:pointer;
border-radius:50px; /* Give the button a rounded look */
cursor:pointer;
-moz-animation-name: raiseButton;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: linear;
-moz-animation-duration: .7s;
-webkit-animation-name: raiseButton;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-webkit-animation-duration: .7s;
animation-name: raiseButton;
animation-iteration-count: 1;
animation-timing-function: linear;
animation-duration: .7s;
}
@-moz-keyframes raiseButton {
0% {
-moz-transform: translateY(100px);
opacity :0;
}
50%{
-moz-transform: translateY(100px);
opacity :0;
}
100% {
-moz-transform: translateY(0);
opacity:1;
}
}
@-webkit-keyframes raiseButton {
0% {
-webkit-transform: translateY(100px);
opacity :0;
}
50%{
-webkit-transform: translateY(100px);
opacity :0;
}
100% {
-webkit-transform: translateY(0);
opacity:1;
}
}
@keyframes raiseButton {
0% {
transform: translateY(100px);
opacity :0;
}
50%{
transform: translateY(100px);
opacity :0;
}
100% {
transform: translateY(0);
opacity :1;
}
}