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
|
/* TEMPORARY LOGIN INFORMATION - WILL BE REPLACED/NOT IMPLEMENTED */
#infoWrapper{
/* Position & Size */
position:absolute;
width: 70%;
top:15%;
left:30%;
z-index: -1;
}
.infoText{
/* Position & Size */
position:relative;
height:400px;
width:500px;
/* Colors and styling */
background-image: url(http://1.bp.blogspot.com/-7aRhFnlWYV8/T0uBCnPU2OI/AAAAAAAAAJQ/PNqbCXHvD8M/s1600/JENNAHHS+SHITTY+ARROW.png);
background-size:500px 500px;
background-repeat:no-repeat;
background-position:top;
opacity:0.2 !important;
}
p.info{
/* Position & Size */
position:relative;
top:-8em;
/* Colors and styling */
font-family: Helvetica;
font-size:22px;
font-weight:bold;
color: black;
}
|