Hash :
b4a51d23
Author :
Thomas de Grivel
Date :
2022-01-22T10:02:41
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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
/* This file is for your main application CSS */
@import "./inter.scss";
@import "../node_modules/bootstrap/scss/bootstrap.scss";
$font-family-sans-serif: "Inter", sans-serif;
$font-family-monospace: "Courier New", monospace;
$code-font-size: $font-size-base;
@import "../node_modules/bootstrap/scss/bootstrap.scss";
@import "../node_modules/font-awesome/scss/font-awesome.scss";
@import "./flash.scss";
@import "./pygments.scss";
/* navbar */
.navbar {
padding-top: 0.3rem;
margin-bottom: 0.6em;
}
.navbar-brand {
padding: 0;
}
.nav-link {
padding: 0.65rem 1rem 0;
}
/* footer */
.footer {
padding: 1em;
word-break: normal;
}
/* user */
textarea#user_description,
textarea#organisation_description,
textarea#repository_description {
min-height: 10em;
}
textarea#user_ssh_keys,
textarea#repository_deploy_keys {
font-family: monospace;
min-height: 20em;
overflow-x: scroll;
overflow-y: scroll;
}
pre.ssh_keys {
max-width: 20em;
white-space: pre-wrap;
}
pre.admin_ssh_keys {
max-width: 40em;
white-space: pre-wrap;
}
img.qrcode {
width: 50%;
min-width: 190px;
max-width: 512px;
margin: auto;
display: block;
}
/* repository */
#repo_title {
a {
text-decoration: none;
color: black;
}
a:hover {
color: blue;
}
}
table.admin-properties th {
min-width: 8em;
}
.file-content {
border: solid 1px #ccc;
padding: 1em;
* {
word-break: normal;
}
}
.content_text {
border: solid 1px #ccc;
padding: 0.5em 0.5em 0.5em 3.5em;
margin: 0;
position: relative;
}
.content_text .line_numbers {
position: absolute;
top: 0.5em;
left: 0.5em;
text-align: right;
width: 2.5em;
color: #aaa;
a {
text-decoration: none;
color: #aaa;
}
}
pre code {
display: block;
border: solid 1px #ccc;
padding: 1em;
overflow: scroll;
}
.content_html img {
max-width: 100%;
}
.invalid-feedback {
display: inherit;
}
h1,h2,h3,h4,h5,h6 {
a {
text-decoration: none;
color: #000;
}
}
* {
word-break: break-all;
}
/* log */
table.git-log {
* { word-break: normal; }
.commit { min-width: 6em; }
.author { min-width: 10em; }
.date { min-width: 15em; }
.message { min-width: 15em; }
}
/* LiveView specific classes for your customization */
.phx-no-feedback.invalid-feedback,
.phx-no-feedback .invalid-feedback {
display: none;
}
.phx-click-loading {
opacity: 0.5;
transition: opacity 1s ease-out;
}
.phx-disconnected{
cursor: wait;
}
.phx-disconnected *{
pointer-events: none;
}
.phx-modal {
opacity: 1!important;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.phx-modal-content {
background-color: #fefefe;
margin: 15vh auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.phx-modal-close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.phx-modal-close:hover,
.phx-modal-close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}