File size: 876 Bytes
4b010ad
 
 
e2f00f6
4b010ad
e2f00f6
4b010ad
 
 
e2f00f6
 
 
 
4b010ad
 
 
 
e2f00f6
 
 
4b010ad
 
 
e2f00f6
4b010ad
e2f00f6
 
4b010ad
 
e2f00f6
 
 
 
 
4b010ad
 
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
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;
        }