-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_us.css
More file actions
120 lines (103 loc) · 2.06 KB
/
about_us.css
File metadata and controls
120 lines (103 loc) · 2.06 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* General Body Styling */
body {
margin: 0;
height: 100vh;
font-family: sans-serif;
}
/* Main container to wrap everything */
.container {
display: flex;
height: 100vh; /* Full height */
}
/* Sidebar Styling */
.sideBar {
width: 12.3vw;
background-color: #131417;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 20px;
}
.sideLogo {
margin-bottom: -20%;
margin-left: 20%;
height: 50%;
width: 70%;
}
.sideLogoDiv {
margin-top: 1vh;
}
.sideBarText {
font-family: sans-serif;
letter-spacing: 0.7px;
font-size: 24px;
color: white;
margin-top: 25%;
text-align: center;
}
.sideLinks {
margin-top: 30%;
font-family: sans-serif;
color: white;
text-align: center;
}
.sideListLinks {
list-style-type: none;
margin-bottom: 10px;
}
a {
color: rgba(255, 255, 255, 0.6);
text-decoration: underline;
transition: color 0.1s ease-in-out;
}
a:hover {
color: rgba(255, 255, 255, 1.0);
}
/* Main Content Styling */
.mainContent {
flex: 1;
display: flex;
flex-direction: column;
}
/* Upper Bar */
.upperBar {
display: flex;
align-items: center;
justify-content: center;
height: 33%;
padding: 0 20px;
background-image: url(top_background.png);
}
.mainLogo {
height: 69%;
width: 45%;
}
.loginBar {
display: flex;
align-items: center;
padding: 6px;
background-color: #131417;
}
.loginInnerDiv {
margin-left: auto;
}
.loginButton, .signupButton {
font-family: sans-serif;
font-size: 18px;
text-decoration: underline;
margin-left: 10px;
}
/* Body Text Styling */
.bodyTextContainer {
display: flex;
justify-content: center;
padding-top: 20px; /* Add space below the top bar */
width: 100%;
}
.bodyText {
width: 80%; /* Set width of the body text area */
font-size: 16px;
line-height: 1.5;
padding: 20px;
background-color: white;
}