-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
134 lines (119 loc) · 3.15 KB
/
style.css
File metadata and controls
134 lines (119 loc) · 3.15 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
126
127
128
129
130
131
132
133
134
body{background: #000;}
.logoColor{color: #EA0000 !important;}
.fullscreen-bg {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
z-index: -100;
}
.fullscreen-bg__video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media (min-aspect-ratio: 16/9) {
.fullscreen-bg__video {height: 300%; top: -100%;
}
}
@media (max-aspect-ratio: 16/9) {
.fullscreen-bg__video {width: 300%; left: -100%;}
}
@media (max-width: 767px) {
.fullscreen-bg {background: url('application/contents/images/back.jpg') center center / cover no-repeat;}
.fullscreen-bg__video {display: none;}
.xs-mg-top-10{margin-top: 10px;}
.xs-pd-left-0{padding-left: 0 !important;}
.xs-pd-0{padding: 0 !important;}
}
@media (min-width: 768px) {
.nav-pills .nav-link {
-webkit-border-top-left-radius: 8px;
-webkit-border-bottom-left-radius: 8px;
-moz-border-radius-topleft: 8px;
-moz-border-radius-bottomleft: 8px;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
-webkit-border-top-right-radius: 0;
-webkit-border-bottom-right-radius: 0;
-moz-border-radius-topright: 0;
-moz-border-radius-bottomright: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.md-text-right{text-align: right}
.md-mg-top-10{margin-top: 10px;}
.md-pd-right-0{padding-right: 0 !important;}
}
.nav-pills .nav-link {
background: rgba(30, 20, 20, 0.8);
font-family: '1942 report';
color: #DDDDDD;
font-weight: bold;
font-size: 18px;
border-bottom: 1px solid #888888;
}
.nav-pills .nav-link:hover{
border-bottom: 2px solid #FFFFFF;
background: rgba(60, 40, 40, 0.8);
}
.nav-pills .nav-link.active{background: rgba(60, 10, 10, 0.8);}
.content > div:nth-child(2){
background: rgba(60, 10, 10, 0.8);
/*background-image: url("application/contents/images/coudy-brown-leather-texture-wallpaper-fabric-stock-image-design-1.jpg");
background-size: cover;
background-repeat: no-repeat;*/
-webkit-border-top-right-radius: 8px;
-webkit-border-bottom-right-radius: 8px;
-moz-border-radius-topright: 8px;
-moz-border-radius-bottomright: 8px;
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
color: #FFFFFF;
}
.text-muted{color: #FFFFFF !important;}
.question-group{
height: auto;
min-height: 200px;
padding: 0;
margin-top: 20px;
}
.question-group > .question{
background: rgba(255, 255, 255, 0.3);
margin-bottom: 5px;
padding: 10px 15px;
}
.question-group > .question > h6.title{
color: #222222;
font-weight: bold;
}
.question-group > .question .form-check{
margin: 0 !important;
color: #EEE;
}
.question-group > .question table.scale{
width: 100%;
border-width: 0;
margin-top: 15px;
}
.question-group > .question table.scale td,
.question-group > .question table.scale th{
border-color: #222;
border-width: 0;
text-align: center;
padding-top: 2px;
padding-bottom: 2px;
background: rgba(200, 200, 200, 0.4);
}
.question-group > .question table.scale th{
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.question-group > .question table.scale td:nth-child(even),
.question-group > .question table.scale th:nth-child(even){
background: rgba(120, 100, 80, 0.4);
}
input:disabled, input:disabled ~ label{color: #EEE !important;}