-
Notifications
You must be signed in to change notification settings - Fork 0
/
customCSS.css
108 lines (96 loc) · 2.28 KB
/
customCSS.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
body {
background: #000000;
}
label.error {
color: #F00;
}
h2{
text-align: center;
font-size: 30px;
color: rgba(255, 128, 0, 0.75);
}
label, h3, h4, a {
color: rgba(255, 128, 0, 0.75);
}
.dropdown {
max-width: 100%;
}
li a {
color: #FFF;
background: rgba(255, 128, 0, 0.50);
}
.tab-content {
-webkit-box-shadow: 0 0 2px 1px rgba(255, 128, 0, 0.50);
-moz-box-shadow: 0 0 2px 1px rgba(255, 128, 0, 0.50);
box-shadow: 0 0 2px 1px rgba(255, 128, 0, 0.50);
border-radius: 4px;
}
.btn {
background-color: rgba(255, 128, 0, 0.75);
border: none;
}
.footerDiv, .spanMessageDiv, .item{
color: #FFF;
text-align: center;
width: 70%;
margin-left: auto;
margin-right: auto;
}
.tab-content {
background-color: #FFF;
}
.item img{
display: center-block;
}
.carousel-caption {
position: static;
left:0;
right:0;
bottom:0;
padding: 15px;
text-align: left;
background-color: rgba(0, 0, 0, 0.50);
border-radius: 3px;
height: 20%;
}
@media (max-width:600px){
.carousel-caption {
font-size:5px;
}
}
.carousel-indicators .active {
background-color: orange;
}
.carousel-indicators li {
border: 1px solid orange;
}
.carousel-indicators {
text-align: right;
}
@media screen and (max-width: 700px){
.carousel-caption p {
font-size: 13px;
}
.carousel-caption {
background: rgba(0, 0, 0, 0.55);
}
.carousel-control {
top: 10%;
}
}
.btn-facebook {
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #2b4b90;
*background-color: #133783;
background-image: -moz-linear-gradient(top, #3b5998, #133783);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3b5998), to(#133783));
background-image: -webkit-linear-gradient(top, #3b5998, #133783);
background-image: -o-linear-gradient(top, #3b5998, #133783);
background-image: linear-gradient(to bottom, #3b5998, #133783);
background-repeat: repeat-x;
border-color: #133783 #133783 #091b40;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3b5998', endColorstr='#ff133783', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}