-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (82 loc) · 1.74 KB
/
style.css
File metadata and controls
94 lines (82 loc) · 1.74 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f6f8fa;
color: #24292e;
margin: 0;
padding: 20px;
}
.container {
max-width: 600px;
margin: 40px auto;
padding: 30px;
background-color: #fff;
border: 1px solid #d1d5da;
border-radius: 6px;
}
h1 {
text-align: center;
border-bottom: 1px solid #e1e4e8;
padding-bottom: 10px;
margin-top: 0;
}
.form-group {
margin-bottom: 20px;
}
.form-group-checkbox {
margin-bottom: 25px;
display: flex;
align-items: center;
}
.form-group-checkbox input {
margin-right: 8px;
}
label {
display: block;
font-weight: 600;
margin-bottom: 5px;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 8px 12px;
font-size: 14px;
line-height: 20px;
border: 1px solid #d1d5da;
border-radius: 6px;
box-sizing: border-box; /* Important for padding and width */
}
.help-text {
font-size: 12px;
color: #586069;
margin-top: 5px;
}
button {
width: 100%;
padding: 10px;
font-size: 16px;
font-weight: 600;
color: #fff;
background-color: #2ea44f;
border: 1px solid rgba(27, 31, 35, 0.15);
border-radius: 6px;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #2c974b;
}
#status-container {
margin-top: 30px;
}
#log-output {
background-color: #24292e;
color: #f6f8fa;
padding: 15px;
border-radius: 6px;
white-space: pre-wrap; /* Allows long lines to wrap */
word-wrap: break-word;
height: 200px;
overflow-y: auto;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
font-size: 13px;
}