-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
122 lines (104 loc) · 1.63 KB
/
styles.css
File metadata and controls
122 lines (104 loc) · 1.63 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
body {
font-family: Arial, sans-serif;
line-height: 1.8;
margin: 0;
padding: 0;
background-color: #f4f4f9;
font-size: 16px;
color: #333;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
}
header nav ul {
list-style: none;
padding: 0;
}
header nav ul li {
display: inline;
margin: 0 15px;
}
header nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
font-size: 1.1rem;
}
header nav ul li a:hover {
text-decoration: underline;
}
.portrait img {
width: 150px;
max-width: 100%;
height: auto;
border-radius: 50%;
display: block;
margin: 0 auto;
}
main {
padding: 20px;
max-width: 900px;
margin: 0 auto;
font-size: 1rem;
}
section {
margin-bottom: 40px;
}
.section-heading {
font-size: 2rem;
margin-bottom: 20px;
color: #333;
text-align: center;
}
.project-container {
display: flex;
justify-content: center;
}
.project-tile img {
width: 300px;
max-width: 100%;
height: auto;
border: 2px solid #ccc;
border-radius: 5px;
transition: transform 0.3s;
}
.project-tile img:hover {
transform: scale(1.05);
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: white;
position: fixed;
bottom: 0;
width: 100%;
font-size: 0.9rem;
}
.contacts a {
margin: 0 10px;
color: #333;
font-size: 1.5rem;
transition: color 0.3s;
}
.contacts a:hover {
color: #007bff;
}
main p {
font-size: 1.2rem;
line-height: 1.8;
color: #555;
text-align: justify;
}
.info {
text-align: center;
margin-bottom: 20px;
font-size: 1.2rem;
}
.contacts {
text-align: center;
margin-top: 10px;
}