-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (98 loc) · 2.35 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
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
110
111
112
113
114
115
116
body {
font-family: 'Courier New', Courier, monospace;
background-color: #1e1e1e;
color: #ffffff;
margin: 0;
padding: 20px;
}
.container {
max-width: 600px;
margin: auto;
background-color: #2c2c2c;
border-radius: 8px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
h1, h2 {
color: #00ff00; /* Bright green for headers */
}
.wallet-info,
.sell-order {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"],
input[type="password"],
input[type="number"] {
width: calc(100% - 22px);
padding: 10px;
border: none;
border-radius: 4px;
background-color: #3c3c3c;
color: #ffffff;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
outline: none;
border: 2px solid #00ff00; /* Green border on focus */
}
button {
background-color: #00ff00; /* Green button */
color: #000000; /* Black text */
border: none;
padding: 10px 15px;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #009900; /* Darker green on hover */
}
#sellOrders {
background-color: #3c3c3c; /* Background for sell orders */
padding: 10px;
border-radius: 4px;
}
#message {
margin-top: 20px;
font-family: 'Courier New', Courier, monospace; /* Terminal font style */
}
/* Tahcoin Information Styles */
.tahcoin-info {
background-color: #4a4a4a; /* Darker background for info section */
padding: 15px;
border-radius: 8px;
}
.tahcoin-info h2 {
color: #00ff00; /* Bright green for headers */
}
/* Day/Night Mode Toggle Styles */
.mode-toggle {
position: absolute; /* Position it at the top right */
top: 20px;
right: 20px;
cursor: pointer;
}
.light-mode {
background-color: #ffffff; /* Light background */
color: #000000; /* Dark text */
}
.light-mode .container {
background-color: #f0f0f0; /* Lighter container */
color: #000000; /* Dark text inside container */
}
.light-mode .tahcoin-info {
background-color: #e9e9e9; /* Lighter container */
}
.light-mode #sellOrders {
background-color: #e9e9e9; /* Lighter container */
}
.light-mode input[type='text'],
.light-mode input[type='password'],
.light-mode input[type='number'] {
background-color: #e0e0e0; /* Lighter input fields */
color: #000000; /* Dark text in input fields */
}