-
Notifications
You must be signed in to change notification settings - Fork 1
/
extstyling.css
104 lines (94 loc) · 1.71 KB
/
extstyling.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
/*For fixing the background image*/
.background{
background-image:url("animalbg.jpg");
opacity:0.5;
background-position:fixed;
background-repeat:no-repeat;
width:100%;
position:relative;
}
/*for making the large button*/
.blarge{
max-width:300px;
max-height:100px;
font-size:23px;
font-weight:34;
}
/*putting the image and the text together*/
.containerx {
position: relative;
text-align: center;
color: white;
width:100%;
}
/*putting the text on the image*/
.centered {
position: absolute;
top:30%;
left:50%;
width:100%;
/*height:60em;*/
/*border:10px solid white;*/
transform: translate(-50%, -50%);
}
/*Footer*/
.foot{
width:100%;
color:white;
background-color:#222;
height:100px;
margin-bottom:-100px;
bottom:0;
left:0;
}
.foot2{
width:100%;
color:white;
background-color:#222;
height:100px;
position:fixed;
bottom:0;
left:0;
}
/*horizontal rule, to be included with the footer*/
.hori
{
margin-left:20px;
margin-right:20px;
}
.iconm{
font-size:30px;
margin-left:45%;
display:inline-block;
text-align:center;
}
.icon{
font-size:30px;
display:inline-block;
text-align:center;
}
.h4:hover{
color:white;
cursor: pointer;
}
/*Navbar Examples*/
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a{
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover{
background-color: #111;
}