-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
57 lines (46 loc) · 867 Bytes
/
style2.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
body {
font-family: Arial, sans-serif;
}
.container {
text-align: center;
margin-top: 20px;
}
h1 {
font-size: 24px;
}
input[type="file"] {
margin: 20px;
}
#statusLabel {
margin-top: 20px;
font-weight: bold;
}
#imageGrid {
margin-top: 20px;
margin-left: 350px;
margin-right: 350px;
display: grid;
grid-template-columns: repeat(3, minmax(100px, 10fr));
grid-gap: 20px;
}
.grid-item {
border: 2px solid #ccc;
cursor: pointer;
}
.grid-item.selected {
border: 6px solid #007bff;
}
#confirmButton {
margin-top: 20px;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
cursor: pointer;
}
#passwordDisplay {
margin-top: 20px;
font-size: 20px;
font-weight: bold;
color: red;
}