-
Notifications
You must be signed in to change notification settings - Fork 0
/
jumbotron.css
84 lines (72 loc) · 1.15 KB
/
jumbotron.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
/* Move down content because we have a fixed navbar that is 50px tall */
body {
padding-top: 0px;
padding-right: 0px
padding-bottom: 20px;
}
p {
padding-right: 0px;
font-size: 16px;
}
k {
padding-top: -0.5px;
padding-right: 0px;
font-size: 16px;
}
h4 {
text-align: center;
padding-left: 11px;
font-size :16px;
}
ul {
list-style: none;
padding-left: 1px;
font-size: 14px;
}
h6 {
text-align: center;
padding-left: 11px;
font-size: 32px;
}
img {
display: block;
margin-left: auto;
margin-right:auto;
width: 12.5%;
box-shadow: 0px 0px 7px 4px #74b7e8;
animation: glow 1.5s linear infinite alternate;
}
@keyframes glow{
to {
box-shadow: 0px 0px 20px 10px #53aced;
}
}
h1 {
text-align: left;
padding-left: 5px;
font-size: 24px;
}
.footer p {
text-align: right;
font-size: 16px;
}
.footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
background-color: #ffffff;
text-align: center;
}
.button {
background-color: #4CAF50;
border: none;
color: blue;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 8px 2px;
}