-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlayout.css
More file actions
70 lines (58 loc) · 1.02 KB
/
layout.css
File metadata and controls
70 lines (58 loc) · 1.02 KB
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
body{
color:black;
font-weight: bold;
font-size: 150%;
font-family: "Verdana";
}
/*sets the max height for images, adjust depending on the resolution of your screen*/
img{
max-height: 700;
max-width: 700;
}
.social{
font-weight: bold;
margin-left: auto;
}
img.social_username{
vertical-align: middle;
max-height: 60;
max-width: 60;
}
.footer {
text-align: center;
font-weight: bold;
font-size: 150%;
}
/*following css is to center allign the sponsor images*/
.sponsor_container{
position: relative;
float:left;
width: 100%;
height: 650px
}
.sponsor_image{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.sponsor_image {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align:center; /* Align center inline elements */
font: 0/0 a;
}
.sponsor_image:before {
content: ' ';
display: inline-block;
vertical-align: middle;
height: 100%;
}
.sponsor_image img {
vertical-align: middle;
display: inline-block;
}