Spaces:
Sleeping
Sleeping
File size: 4,143 Bytes
e33019a |
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 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>About - Sanskrit Smart Reader</title>
<style>
:root {
--primary: #1e4d6b;
--secondary: #8b6914;
--accent: #8b3a1a;
--bg: #faf8f3;
--card-bg: #ffffff;
--text: #1a1a1a;
--muted: #5a5a5a;
--border-soft: #d4d4d4;
--border-medium: #b8b8b8;
}
/* ===== PAGE ===== */
body {
font-family: "Crimson Pro", "Georgia", "Times New Roman", serif;
background: linear-gradient(to bottom, #f5f2eb 0%, #faf8f3 100%);
color: var(--text);
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
min-height: 100vh;
}
.container {
max-width: 960px;
margin: auto;
padding: 32px 24px;
}
/* ===== NAVBAR ===== */
nav {
background: var(--card-bg);
border-bottom: 1px solid var(--border-medium);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
position: sticky;
top: 0;
z-index: 100;
}
.nav-container {
max-width: 960px;
margin: 0 auto;
padding: 0 24px;
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
}
.nav-brand {
font-family: "Crimson Pro", Georgia, serif;
font-size: 1.35rem;
font-weight: 700;
color: var(--primary);
text-decoration: none;
letter-spacing: -0.02em;
}
.nav-links {
display: flex;
gap: 8px;
align-items: center;
}
.nav-links a {
font-family: "Inter", system-ui, sans-serif;
font-size: 0.95rem;
font-weight: 600;
color: var(--muted);
text-decoration: none;
padding: 8px 20px;
border-radius: 8px;
transition: all 0.2s ease;
}
.nav-links a:hover {
color: var(--primary);
background: #f5f2eb;
}
.nav-links a.active {
color: white;
background: var(--primary);
}
/* ===== CONTENT ===== */
.content-box {
background: var(--card-bg);
padding: 42px 48px;
border-radius: 12px;
border: 1px solid var(--border-medium);
box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
line-height: 1.8;
}
h2 {
color: var(--primary);
font-size: 2rem;
margin-top: 0;
letter-spacing: -0.02em;
}
p {
font-size: 1.1rem;
color: #2d3748;
}
ul {
padding-left: 1.5rem;
}
li {
margin-bottom: 0.5rem;
font-size: 1.1rem;
}
@media (max-width: 640px) {
.nav-container {
flex-direction: column;
height: auto;
padding: 16px 24px;
gap: 12px;
}
.nav-links {
width: 100%;
justify-content: center;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-container">
<a href="../../../index.html" class="nav-brand"
>Sanskrit Smart Reader</a
>
<div class="nav-links">
<a href="../../../index.html">Home</a>
<a href="about.html" class="active">About</a>
<a href="text_parser.html">Parser</a>
</div>
</div>
</nav>
<div class="container">
<div class="content-box">
<h2>About Sanskrit Smart Reader</h2>
<p>
This tool helps students and scholars analyze Sanskrit texts. By
clicking on words, you can instantly retrieve morphological analysis
and dictionary definitions from multiple sources.
</p>
<p>Features:</p>
<ul>
<li>Instant dictionary lookup</li>
<li>Compound splitting</li>
<li>Morphological analysis</li>
</ul>
</div>
</div>
</body>
</html>
|