forked from goku44SSJ/J.U.R.I.M.I.N.D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
143 lines (124 loc) · 2.81 KB
/
about.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
@import url('https://fonts.googleapis.com/css?family=Manrope');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:"Manrope", sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: url('gradient.png') no-repeat;
background-size: cover;
background-position: center;
}
header{
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 20px 100px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 99;
}
.logo{
text-decoration: none;
font-size: 2.0em;
color: #e8e8e8;
user-select: none;
font-weight: 700;
}
.navigation a{
position: relative;
font-size: 1.0em;
color: #e8e8e8;
text-decoration: none;
font-weight: 500;
margin-left: 40px;
}
.about-page {
text-align: center;
padding: 40px;
}
.team-members {
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.team-member {
width: 65%; /* Adjust the width to fill most of the page */
margin: 20px;
padding: 20px;
background: rgba(0, 0, 0, 0.195);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
transition: 0.3s;
}
.member-box {
display: flex;
align-items: center;
width: 100%;
}
.member-image {
width: 500px;
height: 500px;
overflow: none;
margin-right: 20px;
border: none;
}
.member-image img {
max-width: 100%;
height: 100%;
object-fit: cover;
}
.member-info {
flex-grow: 1;
}
.member-info h3 {
font-size: 1.5em;
color: #333;
}
.member-info p {
font-size: 1.2em;
color: #666;
}
.team-member:hover {
transform: scale(1.3);
background: rgba(255, 255, 255, 0.934);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
}
.vertical-line {
width: 2px;
height: 500px; /* Adjust the height as needed */
background-color: #dcdcdc52; /* Vertical line color */
margin-right: 20px; /* Spacing between the line and text */
}
.social-icons {
display: flex;
flex-direction: column; /* Display icons vertically */
align-items: center; /* Center icons horizontally */
margin-top: auto; /* Push icons to the bottom of the card */
}
.social-icons a {
text-decoration: none;
margin-bottom: 10px; /* Adjust spacing between icons */
transition: transform 0.2s ease-in-out; /* Add a subtle hover effect */
}
.social-icons img {
width: 30px; /* Adjust icon size as needed */
height: auto; /* Maintain aspect ratio */
}
.social-icons a:hover {
transform: scale(1.1); /* Increase size on hover */
}