-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
79 lines (66 loc) · 1.25 KB
/
app.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
body {
background-color: #bdc2c5;
font-family: Arial,sans-serif;
line-height: 1.6;
padding: 20px;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
th {
background-color: #edf3f7;
}
button {
cursor: pointer;
background-color: #edf3f7;
}
#loginSection {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.login-inputs {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 10px;
}
#loginSection input, #loginSection button {
width: 200px;
padding: 8px;
}
.login-container {
background-color: #f0f0f0;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
text-align: center;
width: 300px; /* 設定一個固定寬度 */
}
.login-container h2 {
margin-bottom: 20px;
}
.login-container input,
.login-container button {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
box-sizing: border-box;
}
.login-container button {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
.login-container button:hover {
background-color: #45a049;
}