Skip to content

Commit 9f3c67f

Browse files
Index Style Sheet
1 parent e58e922 commit 9f3c67f

1 file changed

Lines changed: 85 additions & 0 deletions

File tree

static/css/style.css

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
* {
2+
padding: 0;
3+
margin: 0;
4+
}
5+
6+
body {
7+
font-family: Arial, sans-serif;
8+
text-align: center;
9+
background-color: #f4f4f4;
10+
padding: 5px;
11+
}
12+
13+
h1 {
14+
color: #007BFF;
15+
}
16+
17+
form {
18+
19+
margin: 20px 0;
20+
}
21+
22+
input,
23+
button {
24+
margin: 5px;
25+
padding: 10px;
26+
font-size: 16px;
27+
}
28+
29+
button {
30+
background-color: #007BFF;
31+
color: white;
32+
border: none;
33+
cursor: pointer;
34+
}
35+
36+
button:hover {
37+
background-color: #0056b3;
38+
font-weight: bolder;
39+
}
40+
41+
.result {
42+
background: white;
43+
padding: 15px;
44+
margin-top: 20px;
45+
border-radius: 5px;
46+
display: inline-block;
47+
text-align: left;
48+
}
49+
50+
.error {
51+
color: red;
52+
font-weight: bold;
53+
}
54+
55+
/* 404 Page Styling */
56+
.error-page {
57+
text-align: center;
58+
padding: 100px 20px;
59+
}
60+
61+
.error-page h1 {
62+
font-size: 80px;
63+
color: #ff4757;
64+
margin-bottom: 10px;
65+
}
66+
67+
.error-page p {
68+
font-size: 20px;
69+
color: #555;
70+
margin-bottom: 20px;
71+
}
72+
73+
.error-page .btn {
74+
display: inline-block;
75+
padding: 10px 20px;
76+
background-color: #007bff;
77+
color: #fff;
78+
text-decoration: none;
79+
border-radius: 5px;
80+
font-size: 18px;
81+
}
82+
83+
.error-page .btn:hover {
84+
background-color: #0056b3;
85+
}

0 commit comments

Comments
 (0)