-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
84 lines (70 loc) · 1.54 KB
/
Copy pathstyles.css
File metadata and controls
84 lines (70 loc) · 1.54 KB
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
/* Reset styles */
body, h1, p, div, header {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #e8f5fd; /* Light blue background */
color: #333;
padding: 20px;
width: 300px;
}
.container {
text-align: center;
}
header {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
}
.header-icon {
width: 40px;
height: 40px;
margin-right: 10px;
}
h1 {
font-size: 20px;
color: #005f99; /* Deep blue to match the icon */
}
p {
font-size: 14px;
color: #555;
}
.btn {
background-color: #007acc; /* Vibrant blue matching the icon */
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
font-size: 14px;
margin-top: 20px;
}
.btn:hover {
background-color: #005f99; /* Darker blue for hover effect */
}
.status {
margin-top: 15px;
font-size: 14px;
color: #d32f2f; /* Error color (red) */
display: none; /* Hidden by default */
}
.status.success {
color: #388e3c; /* Success color (green) */
}
footer {
margin-top: 20px;
font-size: 12px;
color: #888;
}
footer a {
color: #007acc; /* Matching the blue theme */
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/*Dr. Seth Dobrin 1Infinity Ventures & Qantm AI. Free for use under Creative Commons liscense contact seth@qantm.ai or seth@1infinity.vc */