Spaces:
Runtime error
Runtime error
File size: 2,651 Bytes
57b8424 |
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 |
@keyframes gradientBG {
0% {background-position: 0% 50%;}
50% {background-position: 100% 50%;}
100% {background-position: 0% 50%;}
}
body {
font-family: 'Montserrat', sans-serif;
color: #fff;
line-height: 1.6;
background-size: 200% 200%;
background-image: linear-gradient(45deg, #151A2D, #2D284D, #151A2D);
animation: gradientBG 10s ease infinite;
}
.landing {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.landing h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 2rem;
}
.landing p {
font-size: 1.5rem;
font-weight: 400;
max-width: 500px;
margin: auto;
margin-bottom: 2rem;
}
.container {
max-width: 900px;
margin: auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 12px;
box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
transition: all .3s ease-in-out;
margin-bottom: 180px;
}
.container:hover {
transform: scale(1.01);
box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}
input, select, #output, #reportContainer {
background-color: rgba(255,255,255,0.1);
border: none;
color: #fff;
transition: all .3s ease-in-out;
}
input:hover, input:focus, select:hover, select:focus {
background-color: #dfe4ea;
border: 1px solid rgba(255, 255, 255, 0.5);
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease-in-out;
}
.btn-primary {
background: linear-gradient(to right, #0062cc, #007bff);
border: none;
transition: all .3s ease-in-out;
}
.btn-secondary {
background: linear-gradient(to right, #6c757d, #6c757d);
border: none;
transition: all .3s ease-in-out;
}
.btn:hover {
opacity: 0.8;
transform: scale(1.1);
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
.agent_question {
font-size: 1.2rem;
font-weight: 500;
margin-bottom: 0.5rem;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: linear-gradient(to right, #151A2D, #111827);
color: white;
text-align: center;
padding: 10px 0;
}
.margin-div {
margin-top: 20px;
margin-bottom: 20px;
padding: 10px;
}
.agent_response {
background-color: #747d8c;
margin: 10px;
padding: 10px;
border-radius: 12px;
}
#output {
height: 300px;
overflow: auto;
padding: 10px;
margin-bottom: 10px;
margin-top: 10px;
}
#reportContainer {
background-color: rgba(255,255,255,0.1);
border: none;
color: #fff;
transition: all .3s ease-in-out;
padding: 10px;
border-radius: 12px;
}
|