source: portal_2019/css/styles.css @ 3483075

devportal
Last change on this file since 3483075 was 0155753, checked in by Argenis Osorio <argenisosorio580@…>, 9 months ago

Agregados archivos restantes al seguimiento de git

  • Property mode set to 100755
File size: 2.4 KB
Line 
1@font-face {
2  font-family: 'Open Sans';
3  src: url("../fonts/opensans/OpenSans-Regular.ttf");
4  font-weight: 400;
5}
6
7@font-face {
8  font-family: 'Open Sans';
9  src: url("../fonts/opensans/OpenSans-Bold.ttf");
10  font-weight: 500;
11}
12
13@font-face {
14  font-family: 'Raleway';
15  src: url("../fonts/raleway/Raleway-Regular.ttf");
16  font-weight: 400;
17}
18
19@font-face {
20  font-family: 'Raleway';
21  src: url("../fonts/raleway/Raleway-Bold.ttf");
22  font-weight: 500;
23}
24
25* {
26  font-family: 'Open Sans';
27  font-weight: 400;
28}
29
30h1, h2, h3, h4, h5, h6 {
31  font-family: 'Raleway';
32  font-weight: 500;
33}
34
35.file-preview-thumbnails .file-preview-frame, .file-preview-thumbnails .file-preview-frame object {
36  min-height: 300px !important;
37  width: 98% !important;
38}
39
40.file-preview-thumbnails .file-preview-frame video {
41   min-height: 300px !important;
42   width: 98% !important;
43 }
44
45.file-preview-thumbnails .file-preview-frame audio {
46  min-height: 300px !important;
47  width: 98% !important;
48}
49
50.file-preview-thumbnails .file-preview-frame .file-preview-image {
51  min-height: 300px !important;
52  width: 98% !important;
53}
54
55.file-preview-thumbnails .file-preview-frame .file-preview-text {
56  min-height: 300px !important;
57  width: 98% !important;
58}
59
60.cintillo {
61  background: #275a9b;
62  -webkit-box-shadow: -1px 0px 3px 0px rgba(0,0,0,0.75);
63  -moz-box-shadow: -1px 0px 3px 0px rgba(0,0,0,0.75);
64  box-shadow: -1px 0px 3px 0px rgba(0,0,0,0.75);
65}
66
67table { font-size: 14px; }
68
69.container-table {
70  max-height: 500px;
71  overflow-y: scroll;
72}
73
74.navbar-light .navbar-nav .nav-link {
75  color: #275a9b;
76}
77a {
78  color: #1b449c !important;
79}
80.text-primary {
81  color: #1b449c !important;
82}
83
84.btn-outline-primary {
85  color: #1b449c;
86  border-color: #0b449c !important;;
87}
88.btn-outline-primary:hover, .btn-outline-primary:focus {
89  background-color: #0b449c;
90  color: #fff;
91}
92.btn-primary {
93  background-color: #0b449c;
94  border-color: #0b449c;
95}
96
97.btn-primary, .btn-secondary {
98  color: #fff !important;
99}
100
101footer {
102  background-color: #0b449c;
103}
104footer a {
105  color: #fff !important;
106}
107footer a:hover, footer a:focus {
108  color: #ddd;
109}
110
111.custom-file-label:after {
112  font-family: "Font Awesome 5 Free";
113  font-weight: 500;
114}
115#pdf ~ .custom-file-label:after { content: '\f1c1'; }
116#pkcs12 ~ .custom-file-label:after { content: '\f2c2'; }
117
118.instructivo {
119  min-height: 45vh;
120}
121
122.fileinput-cancel, .kv-fileinput-upload {
123  display: none;
124}
125
126.progress {
127  display: none !important;
128}
Note: See TracBrowser for help on using the repository browser.