-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (83 loc) · 1.31 KB
/
style.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
81
82
83
84
85
86
87
88
89
90
91
92
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
header {
background-color: #4CAF50;
color: white;
padding: 10px 0;
width: 100%;
text-align: center;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}
.upload-section, .materials-section {
margin: 20px 0;
}
button {
margin-top: 10px;
padding: 8px 16px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background: #f9f9f9;
padding: 10px;
border: 1px solid #ddd;
margin: 5px 0;
display: flex;
justify-content: space-between;
}
li a {
color: #4CAF50;
text-decoration: none;
}
li a:hover {
text-decoration: underline;
}
table {
border-collapse: collapse;
width: 20%;
max-width: 1200px;
}
th, td {
border: 1px solid #333;
padding: 5px;
text-align: center;
font-size: 5px;
}
th {
background-color: #333;
color: white;
font-weight: bold;
}
td:first-child, th:first-child {
background-color: #8B4513;
color: white;
}
caption {
font-size: 5px;
font-weight: bold;
margin-bottom: 5px;
}
.h{
font-size: 15px;
}