-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
144 lines (123 loc) · 2.31 KB
/
styles.css
File metadata and controls
144 lines (123 loc) · 2.31 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
:root {
--primary: #6aa2f7; /* Gray Blue */
--accent: #3aa17e; /* Teal Green */
--text: #333333; /* Charcoal */
--background: #333333; /* Charcoal */
--secondary-bg: #f7f7f7; /* Light Taupe */
}
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--background);
color: var(--text);
line-height: 1.6;
padding: 2rem;
}
header {
background-color: var(--primary);
color: var(--background);
padding: 1.5rem;
text-align: center;
border-radius: 8px;
margin-bottom: 5px;
}
h1, h2 {
margin: 0.5rem 0;
}
section {
background-color: var(--secondary-bg);
padding: 1.5rem;
margin-top: 5px;
border-radius: 8px;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.project, .contact, .about, .info, .mycoculture, .internship {
margin-bottom: 1.5rem;
margin-left: 30px;
}
footer {
margin-top: 2rem;
text-align: center;
font-size: 0.9rem;
color: #777;
}
/* Screenshots */
#projecticon, #screenshot1, #screenshot2, #screenshot3 {
margin: 10px 15px 0 15px;
}
#subnote {
font-size: small;
padding: 0;
}
/* Navigation Styles */
.navigation,
#main-nav {
background-color: var(--background);
border-radius: 8px;
margin-bottom: 1rem;
}
.navigation ul,
#main-nav ul {
list-style: none;
display: flex;
justify-content: center;
margin: 0;
padding: 0;
flex-wrap: wrap;
}
.navigation li,
#main-nav li {
margin: 0;
}
.navigation li a,
#main-nav li a {
display: block;
padding: 10px 20px;
color: var(--primary);
font-weight: bold;
text-decoration: none;
transition: background-color 0.3s ease;
}
.navigation li a:hover,
#main-nav li a:hover {
background-color: black;
color: white;
border-radius: 4px;
}
.content-wrapper {
margin-right: auto;
margin-left: auto;
max-width: 960px;
}
.cert-group {
margin-bottom: 2rem;
}
.cert-group h3 {
color: var(--primary);
margin-bottom: 0.5rem;
text-align: center;
}
.cert-grid {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.cert-grid img {
width: 180px;
height: auto;
max-width: 100%;
border: 1px solid #ccc;
border-radius: 6px;
box-shadow: 1px 2px 4px rgba(0,0,0,0.2);
transition: transform 0.2s ease;
}
.cert-grid img:hover {
transform: scale(1.03);
}