Skip to content

Commit

Permalink
font size fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rawOrlando committed Nov 6, 2023
1 parent 82f15a5 commit 182c4df
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
40 changes: 38 additions & 2 deletions app/assets/stylesheets/application.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,16 @@
clear: none;
}


/*It does not seem like this css is beign applied*/
body {
/* why is font-size not being applied */
/*font-size: 0.875rem; playign with this number to be like 14px */
background: none;
padding: 0;
min-width: 1080px;
background-color: #707070;
font: 0.7em Verdana, "Lucida Grande", "Lucida Sans Unicode", "Arial Unicode MS", Arial, sans-serif;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 0.8rem; /* playign with this number to be like 14px */
line-height: 1.4;
margin: 0;

Expand Down Expand Up @@ -84,6 +87,39 @@ pre {
border: 1px solid #ccc;
border-radius: 4px;
}
/* temp fix some font sizes */
h5, #documents .document .document-title-heading, .h5, span.constraints-label {
font-size: 14px;
}
/* temp fix font issues */
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-invert dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-invert dd {
margin-left: 180px;
}
/* default values to not use general row css*/
.dl-invert.row {
display: block; /* if not block its inline*/
flex-wrap: nowrap;
margin-right: 0px;
margin-left: 0px;
}

abbr,
acronym {
Expand Down
6 changes: 6 additions & 0 deletions app/assets/stylesheets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,12 @@ body {
min-width: 1080px;
}

body {
/* why is font-size not being applied */
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
}

table {
border-collapse: separate;
}
Expand Down

0 comments on commit 182c4df

Please sign in to comment.