Spaces:
Running
Running
ehristoforu
commited on
Commit
•
33a6907
1
Parent(s):
52bd405
Create styles.css
Browse files- styles.css +54 -0
styles.css
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Global styles */
|
2 |
+
body {
|
3 |
+
font-family: Arial, sans-serif;
|
4 |
+
margin: 0;
|
5 |
+
padding: 0;
|
6 |
+
}
|
7 |
+
|
8 |
+
.card {
|
9 |
+
max-width: 600px;
|
10 |
+
margin: 50px auto;
|
11 |
+
padding: 20px;
|
12 |
+
background-color: #f9f9f9;
|
13 |
+
border-radius: 8px;
|
14 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
15 |
+
}
|
16 |
+
|
17 |
+
h1 {
|
18 |
+
font-size: 24px;
|
19 |
+
margin-bottom: 20px;
|
20 |
+
}
|
21 |
+
|
22 |
+
p {
|
23 |
+
font-size: 16px;
|
24 |
+
line-height: 1.5;
|
25 |
+
margin-bottom: 15px;
|
26 |
+
}
|
27 |
+
|
28 |
+
ul {
|
29 |
+
list-style-type: none;
|
30 |
+
padding: 0;
|
31 |
+
margin: 0;
|
32 |
+
}
|
33 |
+
|
34 |
+
ul li {
|
35 |
+
margin-bottom: 10px;
|
36 |
+
}
|
37 |
+
|
38 |
+
a {
|
39 |
+
color: #007bff;
|
40 |
+
text-decoration: none;
|
41 |
+
}
|
42 |
+
|
43 |
+
a:hover {
|
44 |
+
text-decoration: underline;
|
45 |
+
}
|
46 |
+
|
47 |
+
/* Specific styles for different elements */
|
48 |
+
p > i {
|
49 |
+
font-style: italic;
|
50 |
+
}
|
51 |
+
|
52 |
+
ul > li > p {
|
53 |
+
margin-bottom: 0;
|
54 |
+
}
|