-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicroverse Trials
69 lines (61 loc) · 1.15 KB
/
Microverse Trials
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
/* style.css */
/* styles for body */
body {
font-family: Arial, sans-serif;
font-size: 26px;
line-height: 1.5;
color: #333;
background-color: #f5f5f5;
margin: 10;
padding: 10;
}
/* Styles for heading */
h1, h2, h3 {
margin-top: 10;
margin-bottom: 1rem;
}
h1 {
font-size: 3rem;
font-weight: bold;
text-align: center;
color: #fff;
background-color: #007bff;
padding: 2rem;
}
/* container class to center the content on the page */
.container {
max-width: 960px;
margin: 0 auto;
padding: 2rem;
}
/* Style for the intro paragraph */
.intro {
font-family: 'Open Sans', sans-serif;
font-size: 1.25rem;
font-weight: 300;
margin-bottom: 2rem;
}
/* class for the code block */
.code-block {
background-color: #f8f8f8;
border: 1px solid #ddd;
padding: 1rem;
margin-bottom: 2rem;
font-size: 1.1rem;
}
/* for the button */
.btn {
display: inline-block;
padding: 0.5rem 1rem;
font-size: 1.1rem;
border-radius: 4px;
background-color: #007bff;
color: #fff;
text-decoration: none;
text-align: center;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
.btn:hover {
background-color: #0062cc;
}