-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (68 loc) · 1.33 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
body {
font-family: Arial, sans-serif;
background-color: #0f0f0f;
color: #fff;
margin: 0;
padding: 20px;
display: flex;
justify-content: flex-start;
align-items: flex-start;
flex-direction: column;
}
form {
display: flex;
flex-direction: column;
max-width: 400px;
}
label {
margin-top: 10px;
color: #fff;
}
input, textarea {
width: 30%;
max-width: 400px;
margin-top: 5px;
padding: 10px;
font-size: 16px;
background-color: #333;
border: 1px solid #ccc;
border-radius: 0;
color: white;
outline: none;
}
textarea {
height: 100px;
}
button {
cursor: pointer;
background-color: #333333;
color: white;
border: none;
padding: 10px 20px;
border-radius: 0px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
button:hover {
background-color: #45a049;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
button:active {
background-color: #2e8b57;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transform: scale(0.98);
}
body, h1, p, label, a, button {
color: white;
}
#status {
width: 30%;
height: 150px;
margin-top: 20px;
padding: 10px;
border: 1px solid #ccc;
background-color: #333;
color: white;
overflow-y: scroll;
white-space: pre-wrap;
}