-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (66 loc) · 1.62 KB
/
style.css
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
/* Color variables */
:root {
--color-dark-1: #31363F;
--color-dark-2: #43536b;
--color-bg: var(--color-dark-1);
--color-text: #FAF0E6;
--color-highlight: #557e80;
--color-highlight2: #66347F;
}
/* General reset and typography settings */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: var(--color-bg);
color: var(--color-text);
}
/* Header and global container styles */
header, main {
padding: 20px;
}
/* Styling for input areas */
label {
font-size: 16px;
color: #EEEEEE;
}
input[type="text"], input[type="number"] {
padding: 12px;
font-size: 14px;
border: none;
border-radius: 5px;
margin: 5px 0 20px;
width: calc(100% - 44px);
background-color: var(--color-dark-2);
color: var(--color-text);
}
input[type="text"]:focus, input[type="number"]:focus {
outline: none;
border: 2px solid #76ABA8; /* Highlight color from the cold palette */
}
button {
background-color: #66347F; /* Purple from the warm palette */
color: #EEEEEE;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
font-size: 16px;
}
button:hover {
background-color: #9E4784; /* Lighter purple for hover state */
}
.highlight {
background-color: var(--color-highlight); /* Dark purple for highlighting code lines */
color: #EEEEEE;
}
.setup-menu {
margin-bottom: 20px;
}
/* Responsive design tweaks */
@media (max-width: 600px) {
input[type="text"], input[type="number"], button {
width: 90%;
}
}