-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (68 loc) · 1.48 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (68 loc) · 1.48 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
/* General styling for the app */
Screen {
background: #1e1e2e; /* Dark background */
color: #cdd6f4; /* Light text color */
}
/* Header styling */
Header {
background: #89b4fa; /* Light blue accent */
color: #1e1e2e; /* Dark background */
text-style: bold;
padding: 1;
}
/* Footer styling */
Footer {
background: #74c7ec; /* Slightly darker blue */
color: #1e1e2e; /* Dark background */
text-style: bold;
padding: 1;
}
/* Center the main container */
#main-container {
align: center middle;
width: 100%;
height: 100%;
}
/* Center buttons */
Button {
width: 50%;
margin: 1 0; /* Vertical margin */
align: center middle; /* Center horizontally */
}
/* Center input fields */
Input {
width: 50%;
margin: 1 0; /* Vertical margin */
align: center middle; /* Center horizontally */
}
/* Center labels */
Label {
width: 100%;
text-align: center;
margin: 1;
}
/* Title styling */
#title {
text-style: bold;
color: #89b4fa; /* Light blue accent */
margin-bottom: 1;
}
/* Subtitle styling */
#subtitle {
color: #a6adc8; /* Muted text color */
margin-bottom: 2;
}
Button:hover {
background: #74c7ec; /* Slightly darker blue */
color: #1e1e2e; /* Dark background */
}
/* Error message styling */
.error {
color: #f38ba8; /* Red for errors */
text-style: bold;
}
/* Success message styling */
.success {
color: #a6e3a1; /* Green for success */
text-style: bold;
}