Spaces:
Runtime error
Runtime error
Upload 3 files
Browse files- static/css/styles.css +79 -0
- static/image/IISER.png +0 -0
- static/image/ISL.png +0 -0
static/css/styles.css
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
background-color: skyblue;
|
| 3 |
+
font-family: Arial, sans-serif;
|
| 4 |
+
}
|
| 5 |
+
|
| 6 |
+
.container {
|
| 7 |
+
width: 80%;
|
| 8 |
+
margin: auto;
|
| 9 |
+
padding: 20px;
|
| 10 |
+
background-color: white;
|
| 11 |
+
border-radius: 10px;
|
| 12 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
h1 {
|
| 16 |
+
text-align: center;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
form {
|
| 20 |
+
display: flex;
|
| 21 |
+
align-items: center;
|
| 22 |
+
justify-content: center;
|
| 23 |
+
margin-bottom: 20px;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
label {
|
| 27 |
+
margin-right: 10px;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
input[type="text"] {
|
| 31 |
+
width: 300px;
|
| 32 |
+
padding: 5px;
|
| 33 |
+
font-size: 16px;
|
| 34 |
+
border-radius: 5px;
|
| 35 |
+
border: 1px solid #ccc;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
input[type="submit"] {
|
| 39 |
+
padding: 5px 10px;
|
| 40 |
+
font-size: 16px;
|
| 41 |
+
background-color: #007bff;
|
| 42 |
+
color: white;
|
| 43 |
+
border: none;
|
| 44 |
+
border-radius: 5px;
|
| 45 |
+
cursor: pointer;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
.results {
|
| 49 |
+
max-height: 500px;
|
| 50 |
+
overflow-y: auto;
|
| 51 |
+
border: 1px solid #ccc;
|
| 52 |
+
padding: 10px;
|
| 53 |
+
border-radius: 5px;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
ul {
|
| 57 |
+
list-style-type: none;
|
| 58 |
+
padding: 0;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
ul li {
|
| 62 |
+
margin-bottom: 10px;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.logo-left {
|
| 66 |
+
position: absolute;
|
| 67 |
+
left: 180px;
|
| 68 |
+
top: 20px;
|
| 69 |
+
width: 400px; /* Adjust the width as desired */
|
| 70 |
+
/* height: 100px; Maintain aspect ratio */
|
| 71 |
+
}
|
| 72 |
+
|
| 73 |
+
.logo-right {
|
| 74 |
+
position: absolute;
|
| 75 |
+
right: 180px; /* Adjusted right position */
|
| 76 |
+
top: 15px;
|
| 77 |
+
width: 320px; /* Adjust the width as desired */
|
| 78 |
+
/* height: 150px; */
|
| 79 |
+
}
|
static/image/IISER.png
ADDED
|
static/image/ISL.png
ADDED
|