-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (42 loc) · 739 Bytes
/
style.css
File metadata and controls
43 lines (42 loc) · 739 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
body {
margin: 0;
background: #0f0f0f;
color: #eee;
font-family: 'Segoe UI', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
max-width: 600px;
}
input {
padding: 10px;
width: 80%;
margin-top: 10px;
background: #222;
color: #fff;
border: 1px solid #555;
}
button {
margin-top: 10px;
padding: 10px 20px;
background: #00b894;
color: white;
border: none;
cursor: pointer;
transition: background 0.3s ease;
}
button:hover {
background: #019875;
}
pre {
margin-top: 20px;
text-align: left;
background: #1e1e1e;
padding: 15px;
border-radius: 5px;
overflow-x: auto;
}