-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
78 lines (78 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 10px;
background-color: #f9f9f9;
}
table {
margin-top: 10px;
border-collapse: collapse;
width: 100%;
max-width: 100%;
overflow-x: auto;
display: block;
}
th {
background-color: #ff6f61;
color: white;
padding: 12px;
text-align: center;
border: 1px solid black;
font-size: 16px;
}
td {
border: 1px solid black;
padding: 10px;
text-align: center;
font-size: 14px;
}
@media (max-width: 768px) {
table {
display: block;
overflow-x: auto;
white-space: nowrap;
}
}
input,
button,
select {
width: 100%;
max-width: 300px;
margin: 5px 0;
padding: 12px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="file"] {
padding: 10px;
font-size: 14px;
border: 2px solid black;
background-color: white;
cursor: pointer;
transition: border-color 0.3s ease;
}
input[type="file"]:hover {
border-color: #0056b3;
}
button {
background-color: #007bff;
color: white;
font-size: 18px;
cursor: pointer;
border: none;
transition: background 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
@media (max-width: 480px) {
th, td {
padding: 8px;
font-size: 14px;
}
button {
font-size: 16px;
padding: 14px;
}
}