Spaces:
Sleeping
Sleeping
import streamlit as st | |
# Page setup | |
st.set_page_config(page_title="AutoCAD Command Guide", layout="wide") | |
# Custom style | |
st.markdown(""" | |
<style> | |
body { | |
background-color: #e0f0ff; | |
} | |
.stApp { | |
background-color: #e0f0ff; | |
} | |
.title { | |
text-align: center; | |
font-size: 40px; | |
color: #003366; | |
font-weight: bold; | |
margin-bottom: 30px; | |
} | |
.command-box { | |
background-color: #ffffff; | |
border-left: 6px solid #3399ff; | |
border-radius: 10px; | |
padding: 20px; | |
margin-bottom: 20px; | |
box-shadow: 0 4px 6px rgba(0,0,0,0.1); | |
} | |
.command-name { | |
font-size: 24px; | |
color: #003366; | |
margin-bottom: 10px; | |
font-weight: 600; | |
} | |