-
Notifications
You must be signed in to change notification settings - Fork 0
/
volunteer.css
74 lines (64 loc) · 1.42 KB
/
volunteer.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
/* Universal reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styling */
body {
font-family: 'DM Sans', sans-serif;
background-color: #000000;
color: #ffffff;
margin: 0;
padding: 0;
position: relative;
}
/* Header (h1) styling */
h1 {
font-family: 'DM Sans', sans-serif;
font-size: 18px;
text-align: left;
margin-left: 150px;
margin-bottom: 20px;
margin-top: 100px;
}
/* Paragraph (p) styling */
p {
font-family: 'DM Sans', sans-serif;
font-size: 18px;
margin-top: 27px;
margin-left: 150px;
margin-right: 150px;
line-height: 1.2;
text-align: left;
}
/* Profile image styling */
.profile-image {
width: 150px;
height: auto;
position: absolute;
top: 50px;
left: 100px;
}
/* Button styling */
.button-container {
margin-top: 100px;
text-align: center;
}
.btn {
background-color: #c1102a;
color: white;
padding: 10px 20px; /* Match the padding */
border: none;
border-radius: 5px; /* Match the border radius */
cursor: pointer;
font-family: 'DM Sans', sans-serif;
font-size: 16px; /* Match the font size */
}
.btn:hover {
background-color: #a10d25; /* Match hover color */
}
.no-style-link {
color: inherit; /* Use the current text color instead of red */
text-decoration: none; /* Remove the underline */
}