-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
109 lines (98 loc) · 2.31 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebCAD</title>
<style>
input[type=text], select {
width: 100%;
padding: 12px 20px;
border: 1px solid #ccc;
display: block;
border-radius: 4px;
box-sizing: border-box;
}
textarea { width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;}
input[type=number] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type=checkbox] {
margin: 15px 15px;
display: block;
width: 25px;
height: 25px;
}
button {
background-color: #444;
border: 1px solid black;
color: white;
padding: 5px 5px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
button:hover {
background-color: #ccc;
}
.homepage {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #444;
color: #fff;
}
.homepage h1 {
font-size: 36px;
margin-bottom: 10px;
}
.homepage p {
font-size: 18px;
margin-bottom: 20px;
}
.homepage-buttons {
display: flex;
gap: 20px;
}
.homepage-button {
background-color: #444;
border: 1px solid #fff;
color: #fff;
padding: 10px 20px;
font-size: 18px;
text-decoration: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.homepage-button:hover {
background-color: #ccc;
}
</style>
</head>
<body>
<div class="homepage">
<h1>Welcome to the CAD System</h1>
<p>Choose an option below:</p>
<div class="homepage-buttons">
<a href="dispatch.html" class="homepage-button">Dispatch</a>
<a href="records.html" class="homepage-button">Records</a>
<a href="admin.html" class="homepage-button">Admin</a>
</div>
</div>
</body>
</html>