-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.css
More file actions
125 lines (110 loc) · 2.2 KB
/
landing.css
File metadata and controls
125 lines (110 loc) · 2.2 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
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
body {
margin: 0 0;
}
#background{
background-image: url("images/landing_background.jpg");
margin-top: 0px;
margin-bottom: 0px;
background-color: #cccccc;
display: block;
background-position: center;
position: fixed;
left: 0;
top: 0;
width: 100%;
min-height: 100%;
z-index: -1;
opacity: 0.4;
background-repeat: repeat;
/*background-position: 50% 0;*/
-ms-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
-webkit-background-size: cover;
background-size: cover;
}
.title{
font-family: Bondoni MT;
font-size:30px;
}
#author{
font-family: Bondoni MT;
font-size:13px;
}
.text{
margin-top:10%;
font-family: Bondoni MT;
font-size: 15px;
text-align: justify;
}
.button {
/*Step 2: Basic Button Styles*/
margin-top:20px;
margin-left:auto;
margin-right:auto;
display: block;
height: 50;
width: 65px;
background: rgba(177,137,4,1);
border: 1px solid rgba(255,255,255, .5);
/*Step 3: Text Styles*/
color: rgba(255, 255, 255, 1);
/* padding-top: 4px;*/
padding:4px;
text-align: center;
font: bold 12px "Bondoni MT", sans-serif;
/*Step 4: Fancy CSS3 Styles*/
border-radius: 50px;
}
/*Step 3: Link Styling*/
a.button {
text-decoration: none;
position:center;
}
#inset{
text-align: center;
padding-top:20px;
/*margin-top: -235px;*/
}
#mapOriginal{
margin-top:10%;
height:100%;
width:100%;
}
#mapOriginalVertical{
height:100%;
width:100%;
}
.mapSH{
margin-left:7%;
}
.bubbles img{
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 5%;
margin-bottom: 7%;
height:150px;
width:150px;
border-radius: 50%;
border: 2px solid #b18904;
}
.bubblesSmall img{
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 15%;
height:150px;
width:150px;
border-radius: 50%;
border: 2px solid #b18904;
}
/*to shift vertical image bubbles down*/
#image_1{
margin-top:40%;
}
/* to make sure the bubble is not affected by the margin assigned for the larger screens..
MAKE SURE MATCHES bubblesSmall martin-top*/
#image_1_sm{
margin-top:15%;
}