-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
152 lines (132 loc) · 3 KB
/
styles.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* General styles for body, button, select, input, a, textarea */
body, button, select, input, a, textarea {
color: #ffffff;
text-shadow: 0px 4px 8px rgba(0,0,0,0.7);
font-family: 'Courier New', monospace;
}
body {
background-color: #1e1e1e;
margin: 0;
padding: 0;
}
.container {
max-width: 900px;
margin: auto;
padding: 20px;
background: #2c2c2c;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0,0,0,0.8);
}
header {
text-align: center;
margin-bottom: 20px;
}
header h1 {
font-size: 2.5em;
color: #00bcd4;
}
header p {
margin: 5px 0;
color: #ffffff;
}
a {
color: #00bcd4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h2 {
color: #ff9800;
}
textarea {
width: 100%;
height: 200px;
margin-bottom: 10px; /* Space between textareas */
padding: 10px;
border: 1px solid #333;
border-radius: 5px;
background-color: #000;
color: #fff;
box-sizing: border-box; /* Ensure padding and border are included in width */
}
button {
background-color: #4caf50;
color: white;
border: none;
border-radius: 5px;
padding: 10px 15px;
font-size: 16px;
cursor: pointer;
margin-right: 10px;
}
button:hover {
background-color: #45a049;
}
footer {
text-align: center;
margin-top: 20px;
color: #888;
}
footer p {
margin: 10px 0;
}
/* Table styles */
table {
width: 100%;
border-collapse: separate;
border-spacing: 0; /* Ensure no extra spacing by default */
}
td {
padding: 10px; /* Padding inside table cells */
vertical-align: top; /* Align content to the top */
}
/* Notification styles */
.notification {
display: none; /* Ensure it's hidden by default */
position: fixed;
bottom: 20px; /* Adjust this value to move the notification up or down */
right: 20px; /* Adjust this value to move the notification left or right */
background-color: #4caf50;
color: white;
padding: 10px 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
font-size: 16px;
z-index: 1000;
display: flex;
align-items: center;
gap: 10px; /* Space between tick and text */
}
.tick {
font-size: 20px; /* Adjust size of the tick symbol */
margin-right: 10px;
}
/* Notification styles */
.notification {
display: none; /* Hidden by default */
position: fixed;
bottom: 20px;
right: 20px;
background-color: #4caf50;
color: white;
padding: 10px 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
font-size: 16px;
z-index: 1000;
display: flex;
align-items: center;
gap: 10px; /* Space between tick and text */
transition: opacity 0.5s ease-in-out; /* Smooth transition */
opacity: 0; /* Ensure it's invisible by default */
}
.tick {
font-size: 20px; /* Adjust size of the tick symbol */
margin-right: 10px;
}
/* Class to show the notification */
.notification.show {
display: flex; /* Show the notification */
opacity: 1;
}