Spaces:
Running
Running
File size: 2,520 Bytes
38de6eb |
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 |
/* General body styling */
body {
font-family: "Georgia", "Times New Roman", serif;
background-color: #f9f9f9;
color: #333;
margin: 0;
padding: 0;
line-height: 1.6;
}
/* Header styling */
h1, h2, h3 {
font-family: "Merriweather", "Georgia", serif;
color: #00274d; /* Dark academic blue */
text-align: center;
margin-bottom: 20px;
}
h1 {
font-size: 2.5rem;
text-transform: uppercase;
border-bottom: 2px solid #00274d;
padding-bottom: 10px;
}
/* Markdown content */
.gr-block-markdown {
font-size: 1rem;
line-height: 1.8;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}
/* Input fields */
.gr-textbox {
font-family: "Arial", sans-serif;
font-size: 1rem;
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
width: 100%;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
transition: border 0.3s ease;
}
.gr-textbox:focus {
border: 1px solid #00274d;
outline: none;
box-shadow: 0 0 4px rgba(0, 39, 77, 0.2);
}
/* Buttons */
.gr-button-primary {
font-family: "Merriweather", "Georgia", serif;
font-size: 1rem;
font-weight: bold;
background-color: #004085; /* Academic dark blue */
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease, transform 0.2s ease;
}
.gr-button-primary:hover {
background-color: #00274d;
transform: scale(1.05);
}
/* Layout adjustments */
.gr-block {
margin-bottom: 20px;
padding: 15px;
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.gr-row {
display: flex;
gap: 20px;
align-items: flex-start;
}
/* Output styling */
.gr-markdown {
font-family: "Georgia", "Times New Roman", serif;
font-size: 1.1rem;
line-height: 1.8;
color: #333;
padding: 20px;
background: #f5f5f5;
border-radius: 8px;
border-left: 4px solid #004085;
}
/* Footer or progress bar */
.gr-progress {
background-color: #e9ecef;
border-radius: 5px;
overflow: hidden;
}
.gr-progress-bar {
background-color: #004085;
height: 10px;
transition: width 0.3s ease;
}
/* Links */
a {
color: #0056b3;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
a:hover {
color: #00376d;
}
|