-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
117 lines (100 loc) · 2.49 KB
/
index.css
File metadata and controls
117 lines (100 loc) · 2.49 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
/* Search bar */
.search-form .form-group {
float: right !important;
transition: all 0.35s, border-radius 0s;
width: 32px;
height: 32px;
background-color: #fff;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
border-radius: 25px;
border: 1px solid #ccc;
}
.search-form .form-group input.form-control {
padding-right: 20px;
border: 0 none;
background: transparent;
box-shadow: none;
display: block;
}
.search-form .form-group input.form-control::-webkit-input-placeholder {
display: none;
}
.search-form .form-group input.form-control:-moz-placeholder {
/* Firefox 18- */
display: none;
}
.search-form .form-group input.form-control::-moz-placeholder {
/* Firefox 19+ */
display: none;
}
.search-form .form-group input.form-control:-ms-input-placeholder {
display: none;
}
.search-form .form-group/*:hover*/,
.search-form .form-group/*.hover*/ {
width: 100%;
border-radius: 25px 25px 25px 25px;
border: 1px solid green;
}
.search-form .form-group span.form-control-feedback {
position: absolute;
top: -1px;
right: -2px;
z-index: 2;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
color: rgba(185, 185, 185, 0.568);
left: initial;
font-size: 14px;
}
/* Wait modal */
#modalCaricamento {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba(185, 185, 185, 0.568) url('img/loading.gif') 50% 50% no-repeat;
}
body.loading #modalCaricamento {
overflow: hidden;
display: block;
}
body{
width: 100%; height: 100%; top: 0; left: 0;
/* background: rgba(228, 226, 222, 0.527) url("./legnologo.png") no-repeat center top; */
background: rgba(228, 226, 222, 0.527) url("img/wallpaperSuperMarioBros.png") no-repeat center top;
position: fixed;
z-index: -1;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.card{
background-color: rgba(255, 255, 255, 0.8);
}
.card-header{
background-color: #0c9fb1 !important;
height: 30px;
}
/*div.searchBar{
background-color: #aeaeae !important;
}*/
.circles-text{
font-size: 2rem !important
}
ul.list-group li.list-group-item{
background-color:rgba(255, 255, 255, 0);
}
.mustHilightOnHover:hover{
background-color: #5d94fb;
/*border: 1px solid green;*/
}
.pointer {cursor: pointer;}
div.ms-parent{margin-top:10%}