-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.css
More file actions
56 lines (45 loc) · 743 Bytes
/
main.css
File metadata and controls
56 lines (45 loc) · 743 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
}
.buttons {
display: flex;
gap: 10px;
}
a {
padding: 10px 20px;
text-decoration: none;
color: white;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;
}
a.google {
background: #DB4437;
}
a.facebook {
background: #1877F2;
}
a:hover {
filter: brightness(0.9);
}
.container {
padding-top: 80px; /* Adjusts for the height of the navbar */
}
.navbar {
padding: 0.5rem 1rem;
}
.navbar-brand,
.navbar-nav .nav-link {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
}
.navbar-toggler {
padding: 0.25rem 0.75rem;
}
.nav-item {
margin-left: 10px;
}
.container.mt-5 {
margin-top: 4rem !important;
}