-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathstyles.css
80 lines (71 loc) · 1.33 KB
/
styles.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
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
background-color: #f0f2f5;
color: #333;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 30px;
background-color: #ffffff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
border-radius: 12px;
}
h1 {
text-align: center;
color: #2c3e50;
margin-bottom: 30px;
font-weight: 600;
}
#log-area {
margin-top: 20px;
margin-bottom: 20px;
}
#log {
box-sizing: border-box;
width: 100%;
height: 300px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-family: monospace;
font-size: 14px;
resize: vertical;
}
.btn {
display: block;
width: 200px;
padding: 10px 20px;
background-color: #3498db;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition:
background-color 0.3s,
transform 0.1s;
margin: 0 auto;
font-weight: 500;
}
.btn:hover {
background-color: #2980b9;
transform: translateY(-2px);
}
.btn:active {
transform: translateY(0);
}
.btn:disabled {
background-color: #bdc3c7;
color: #7f8c8d;
cursor: not-allowed;
transform: none;
}
.btn:disabled:hover {
background-color: #bdc3c7;
transform: none;
}