-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
133 lines (107 loc) · 1.77 KB
/
main.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
.panel-body{
font-size:36px;
}
.marquee{
margin: 0 auto;
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
animation: marquee 40s linear infinite;
}
.marquee:hover {
animation-play-state: paused
}
@keyframes marquee {
0% { text-indent: 27.5em }
100% { text-indent: -105em }
}
.marquee{
padding-left: 1.5em;
position: relative;
font: 26px 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}
.jumbotron{
background-image: url("img/jumbo.jpg") ;
background-size: cover;
}
#jumbo{
color: white;
}
#jumbo h1{
color: #337ab7;
}
.well{
padding: 20px;
font-family: monospace sans-serif;
}
.well h1{
text-align: ;
}
.well p{
padding: 30px;
font-size: 22px;
}
.logo{
font-size: 100px;
padding: 0;
color: #337ab7;
}
.logo:hover {
animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
perspective: 1000px;
}
.logo2{
font-size: 100px;
padding: 0;
display: inline-block;
color: #337ab7;
}
@keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
.logo2:hover {
animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
perspective: 1000px;
}
#section3 .container h2{
text-align: center;
}
#logos{
text-align: center;
}
body{
font-family: Montserrat , sans-serif;
}
#jumbo p{
font-family: Lato, sans-serif;
}
#mailAddress{
color: #337ab7;
}
#phoneNumber{
color: #337ab7;
}
#section3{
padding-bottom: 140px;
}
#template{
padding-top: 25px;
}
#buttons{
padding-top: 45px;
}