[314dda]: / static / css / main.css

Download this file

117 lines (97 with data), 2.3 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
/**************************************************************************************
* Project : Chest X-Ray Pathology Detection and Localization using Deep Learning
* Author Name : Rammuni Ravidu Suien Silva
* UoW No : 16267097
* IIT No : 2016134
* Module : Final Year Project 20/21
* Supervisor : Mr Pumudu Fernando
* Prototype : Web Interface - FrontEnd [Draft: .v01]
* University of Westminster, UK || IIT Sri Lanka
**************************************************************************************/
.loc-result-print {
display: none;
}
/*Styling for Printing*/
@media print {
* {
-webkit-print-color-adjust: exact !important;
color-adjust: exact !important;
}
.loc-result-print div {
break-inside: avoid;
}
.loc-result-print {
display: block;
}
.loc-result-print .print-cxr-card {
padding: 5%;
}
.loc-result-print .cxr-loc-img {
-ms-transform: scale(1.1); /* for IE 9 */
transform: scale(1.1);
}
}
.img-preview {
width: 256px;
height: 256px;
position: relative;
border: 5px solid #e0e0e0;
box-shadow: 0px 2px 4px 0px rgba(22, 22, 22, 0.1);
margin-top: 1em;
margin-bottom: 1em;
}
/*POPUP CXR*/
.card {
border-radius: 3vh;
margin: auto;
max-width: 680px;
padding: 5vh 4vh;
align-items: center;
box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}
@media (max-width: 800px) {
.card {
width: 95vw
}
}
.card-img {
padding: 5px 0;
width: 100%
}
.card-title {
margin-bottom: unset
}
.card-title p {
color: rgb(29, 226, 226);
font-weight: 900;
font-size: 15px;
margin-bottom: unset
}
.card-text p {
color: grey;
font-size: 16px;
text-align: center;
padding: 1vh 0;
font-weight: lighter
}
.img-preview > div {
width: 100%;
height: 100%;
background-size: 256px 256px;
background-repeat: no-repeat;
background-position: center;
}
input[type="file"] {
display: none;
}
.upload-label {
display: inline-block;
padding: 12px 30px;
font-size: 1em;
transition: all .4s;
cursor: pointer;
}
.upload-label:hover {
background: #34496E;
color: #39D2B5;
}