-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (53 loc) · 899 Bytes
/
Copy pathstyle.css
File metadata and controls
61 lines (53 loc) · 899 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
body {
font-family: Arial, sans-serif;
background: #f0fbff;
padding: 20px;
}
.title {
text-align: center;
color: #007bff;
}
.main-box {
max-width: 500px;
margin: auto;
}
.blue-btn {
background-color: #007bff;
color: white;
padding: 10px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.black-btn {
background-color: black; /* STRICTLY black */
color: white;
padding: 10px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.form-card {
background: white;
padding: 15px;
margin-top: 15px;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
input {
width: 100%;
padding: 7px;
margin-top: 4px;
border: 1px solid #ccc;
border-radius: 4px;
}
#matches {
margin-top: 20px;
}
.matchItem {
background: white;
padding: 10px;
margin-bottom: 10px;
border-left: 4px solid #007bff;
border-radius: 4px;
}