forked from airamez/codando-live
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_06_HttpRequest.css
More file actions
51 lines (45 loc) · 816 Bytes
/
_06_HttpRequest.css
File metadata and controls
51 lines (45 loc) · 816 Bytes
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
body {
font-family: 'Arial', sans-serif;
margin: 20px;
max-width: 800px;
background-color: #1e1e2e;
color: #e0e0e0;
line-height: 1.6;
}
textarea {
width: 100%;
margin-bottom: 10px;
background-color: #2e2e3e;
color: #e0e0e0;
border: 1px solid #444;
border-radius: 8px;
padding: 10px;
font-family: 'Courier New', monospace;
resize: vertical;
}
button {
margin: 5px;
padding: 12px 20px;
cursor: pointer;
background-color: #6200ea;
color: #ffffff;
border: none;
border-radius: 12px;
font-size: 16px;
font-weight: 500;
transition: background-color 0.3s ease, transform 0.1s ease;
}
button:hover {
background-color: #7c4dff;
transform: translateY(-2px);
}
button:active {
transform: translateY(0);
}
#postInput {
height: 100px;
}
h1,
h3 {
color: #bb86fc;
}