-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
152 lines (133 loc) · 2.72 KB
/
styles.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
.screenshot {
border: 1px solid #ccc;
}
table.table td a:only-child:link,
table.table td a:only-child:visited {
text-decoration: none;
}
table.table td a:only-child:hover,
table.table td a:only-child:active {
text-decoration: underline;
}
.well{
background-color: #F5F5DC;
border-radius: 40px 0px 40px 0px;
}
h1, h2, h3, h4, h5, h6{
margin-top:60px;
}
/******* Footer ******/
#site-footer {
height: 50px;
}
#footer1{
width: 80%;
float: left;
}
#footer2{
width: 20%;
float: right
}
/*****
Create class for scaled iframe content
*****/
html,body {height:75%;}
.wrapper{
width:100%;
max-width:1800px;
height:75%;
max-height:1000px;
margin:0 auto;
background:#CCC}
.h_iframe{
position:relative;
padding-top: 100%}
.h_iframe iframe {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
-ms-transform: scale(0.6);
-ms-transform-origin: top left;
-moz-transform: scale(0.6);
-moz-transform-origin: top left;
-o-transform: scale(0.6);
-o-transform-origin: top left;
-webkit-transform: scale(0.6);
-webkit-transform-origin: top left;
transform: scale(0.6);
transform-origin: top left;
overflow: hidden;
}
/**************************
DEFAULT BOOTSTRAP STYLES
**************************/
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.btn-lg {
font-size: 18px;
line-height: 1.33;
border-radius: 6px;
}
.btn-primary {
color: #fff;
background-color: #428bca;
border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
color: #fff;
background-color: #3276b1;
border-color: #285e8e;
}
/***********************
ROUND BUTTONS
************************/
.round {
border-radius: 24px;
}
/***********************
CUSTON BTN VALUES from https://bootstrapbay.com/blog/bootstrap-button-styles/
************************/
.btn {
padding: 14px 24px;
border: 0 none;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
}
.btn:focus, .btn:active:focus, .btn.active:focus {
outline: 0 none;
}
.btn-primary {
background: #0099cc;
color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
background: #33a6cc;
}
.btn-primary:active, .btn-primary.active {
background: #007299;
box-shadow: none;
}