forked from membrane/api-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (93 loc) · 1.66 KB
/
style.css
File metadata and controls
109 lines (93 loc) · 1.66 KB
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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f6f8;
color: #333;
margin: 0;
padding: 20px;
}
.container {
background-color: #fff;
max-width: 600px;
margin: 0 auto;
padding: 30px;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
margin-bottom: 20px;
color: #2c3e50;
}
label {
font-weight: bold;
display: block;
margin-top: 15px;
}
select, input[type="checkbox"] {
margin-top: 8px;
margin-bottom: 12px;
}
select {
width: 100%;
padding: 10px;
border-radius: 6px;
border: 1px solid #ccc;
font-size: 16px;
}
input[type="checkbox"] {
margin-right: 8px;
}
button {
display: block;
width: 100%;
padding: 12px;
margin-top: 20px;
background-color: #3498db;
color: #fff;
font-size: 16px;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #2980b9;
}
.response {
margin-top: 20px;
padding: 10px;
background-color: #eef;
border: 1px solid #ccd;
border-radius: 6px;
white-space: pre-wrap;
word-break: break-word;
}
p {
font-size: 16px;
line-height: 1.6;
margin: 20px auto;
max-width: 700px;
}
ol, ul {
margin: 20px auto;
padding-left: 40px;
max-width: 700px;
}
li {
margin-bottom: 10px;
line-height: 1.6;
}
ul li {
list-style-type: disc;
}
ol li {
list-style-type: decimal;
}
a {
color: #0077cc;
text-decoration: none;
border-bottom: 1px dashed #0077cc;
}
a:hover {
color: #005fa3;
border-bottom: 1px solid #005fa3;
}