-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (70 loc) · 1.11 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (70 loc) · 1.11 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
body {
font-family: Arial, sans-serif;
background-color: #03071E;
color: #CCCCCC;
margin: 0;
padding: 30px;
}
.container {
background-color: #0E1328;
padding: 25px;
border-radius: 12px;
max-width: 700px;
width: 100%;
margin: auto;
}
h1,
h2,
h3 {
color: #F2F2F2;
}
label {
display: block;
margin-top: 1rem;
}
input,
textarea,
select {
width: 100%;
margin-top: 10px;
padding: 12px;
box-sizing: border-box;
margin-bottom: 20px;
font-size: 16px;
background: transparent;
border: 1px solid #6B7280;
border-radius: 12px;
color: #CCCCCC;
}
button {
padding: 12px 20px;
font-size: 16px;
background: #e85d04;
color: white;
border: none;
border-radius: 12px;
cursor: pointer;
width: 100%;
}
.breadcrumb-button {
margin-bottom: 20px;
}
a {
color: #FFD166;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.output {
margin-top: 40px;
}
footer {
text-align: center;
margin-top: 50px;
font-size: 14px;
}
footer a {
text-decoration: none;
color: #FFD166;
}