-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
108 lines (92 loc) · 1.6 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
html,
body {
min-height: max(100%, 100vh);
}
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
transition: background-color 0.3s ease;
color: #fff;
background: linear-gradient(45deg, #000, #000, #000, #000, #000, #57cdac);
}
.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
}
.logo {
font-size: 20px;
font-weight: bold;
}
.nav-menu {
list-style-type: none;
margin: 0;
padding: 0;
}
.nav-menu li {
display: inline;
margin-right: 20px;
}
.nav-menu li a {
text-decoration: none;
color: inherit;
}
.content {
padding: 0px;
text-align: center;
}
/* Style for profile cards */
.profile-card {
border-radius: 15px;
background-color: rgba(0, 0, 0, 0.7);
padding: 20px;
margin: 10px;
width: 500px;
display: inline-block;
vertical-align: top;
transition: 0.2s;
}
.profile-card:hover {
background-color: rgba(0, 0, 0, 1);
transition: 0.2s;
scale: 1.05;
}
.profile-card h2 {
padding: 0px;
opacity: 1;
color: #fff;
}
.profile-card p {
opacity: 1;
color: #ddd;
}
a:focus,
a:active {
color: #fff;
outline: none;
}
.profile-image {
background-color: rgba(10, 10, 10, 0.7);
padding: 10px;
border-radius: 10px;
width: 400px;
height: 200px;
margin: 0 auto;
display: block;
}
.gallery-card {
border-color: #57cdac;
border-width: 2px;
background-color: #111;
display: flex;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
max-width: 700px;
max-height: 180px;
margin: 20px auto;
transition-duration: 0.2s;
overflow: hidden;
}