-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
94 lines (81 loc) · 1.7 KB
/
styles.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* Define a container for the information */
.info-container {
display: flex;
flex-direction: column;
align-items: flex-start;
padding-left: 10%
}
.form-container {
text-align: left;
padding-left: 10%
}
/* Style each item in the container */
.info-item {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
}
.form {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-top: 20px;
}
.label {
width: 200px;
}
.header {
padding-left: 7%;
}
.welcome-banner {
background-color: #e21833;
/* Background color of the top bar */
color: #ffffff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1% 3%;
}
.centered-buttons {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 20px;
/* Adjust the margin as needed */
}
.nav-button {
text-align: center;
width: 20%;
padding: 8px 10px;
background-color: #202020;
color: white;
border: none;
border-radius: 5px;
margin: 1px 10px;
/* Adjust the margin between buttons */
cursor: pointer;
}
.nav-button:hover {
background-color: #ffd000;
}
.navbar {
background-color: #e21833;
/* Background color of the navbar */
display: flex;
}
.navbar a {
text-decoration: none;
color: rgb(255, 255, 255);
padding: 10px 20px;
display: block;
height: 100%;
/* Take up the entire height of the navbar */
line-height: 1;
/* Remove extra space between buttons */
transition: background-color 0.3s ease;
/* Transition effect on hover */
}
.navbar a:hover {
background-color: #64000c;
/* Background color on hover */
}