-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (92 loc) · 1.55 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
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
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
color: #213547;
background-color: #ffffff;
}
body {
margin: 0;
min-width: 320px;
min-height: 100vh;
}
.container {
max-width: 800px;
margin: 2rem auto;
padding: 2rem;
}
h1 {
font-size: 2.5em;
line-height: 1.1;
margin-bottom: 2rem;
text-align: center;
color: #2c3e50;
}
.form-group {
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 2rem;
}
label {
font-weight: 600;
margin-bottom: 0.5rem;
}
input {
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1rem;
}
input:focus {
outline: none;
border-color: #646cff;
box-shadow: 0 0 0 2px rgba(100, 108, 255, 0.2);
}
button {
background-color: #646cff;
color: white;
border: none;
padding: 1rem 2rem;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
transition: background-color 0.3s;
}
button:hover {
background-color: #535bf2;
}
.output-container {
margin-top: 2rem;
padding: 1rem;
background-color: #f8f9fa;
border-radius: 4px;
}
pre {
background-color: #2c3e50;
color: #fff;
padding: 1rem;
border-radius: 4px;
overflow-x: auto;
white-space: pre-wrap;
word-wrap: break-word;
}
.copy-btn {
margin-top: 1rem;
background-color: #4CAF50;
}
.copy-btn:hover {
background-color: #45a049;
}
h2 {
color: #2c3e50;
margin-bottom: 1rem;
}
@media (max-width: 768px) {
.container {
padding: 1rem;
margin: 1rem;
}
}