Spaces:
Runtime error
Runtime error
musfiqdehan
commited on
Commit
•
d3cb37c
1
Parent(s):
163e5f8
Add styles.css file with font, alignment, and table styles
Browse files- styles.css +29 -0
styles.css
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&display=swap");
|
2 |
+
|
3 |
+
h1 {
|
4 |
+
font-family: "Merriweather", serif;
|
5 |
+
text-align: center;
|
6 |
+
font-weight: 700;
|
7 |
+
}
|
8 |
+
|
9 |
+
p {
|
10 |
+
text-align: center;
|
11 |
+
}
|
12 |
+
|
13 |
+
.mybtn {
|
14 |
+
background-color: rgb(240,98,16)!important;
|
15 |
+
}
|
16 |
+
|
17 |
+
table {
|
18 |
+
border: 1px solid gray;
|
19 |
+
border-collapse: collapse;
|
20 |
+
text-align: center;
|
21 |
+
width: 100%;
|
22 |
+
}
|
23 |
+
|
24 |
+
th,
|
25 |
+
td {
|
26 |
+
border: 1px solid gray;
|
27 |
+
border-collapse: collapse;
|
28 |
+
padding: 5px;
|
29 |
+
}
|