-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (98 loc) · 1.94 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
109
110
111
112
113
114
115
116
117
/* styles.css */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
color: #333;
}
header {
background: #004080;
color: white;
padding: 1rem 0;
text-align: center;
}
header img {
width: auto;
height: auto;
max-width: 300px;
margin-bottom: 1rem;
}
section {
padding: 3rem;
}
h1, h2 {
color: #004080;
}
.contact-info {
background: #f4f4f4;
padding: 1rem;
margin-top: 2rem;
}
.paper {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1.5rem;
gap: 2rem;
}
.paper img {
max-width: 40%; /* Default smaller size for mobile and small screens */
height: auto;
transition: max-width 0.3s ease;
}
.paper div {
flex: 1;
}
.project {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1.5rem;
gap: 2rem;
}
.project img {
max-width: 50%; /* Default smaller size for mobile and small screens */
height: auto;
transition: max-width 0.5s ease;
}
.project div {
flex: 1;
}
.inline-image {
display: inline-block; /* Make the image inline with text */
width: 100px; /* Control the width of the image */
height: auto; /* Maintain aspect ratio */
vertical-align: middle; /* Align the image vertically with the text */
margin-right: 10px; /* Optional: add space between the image and text */
}
/* Mobile Responsive Layout */
@media (max-width: 768px) {
.paper {
flex-direction: column;
align-items: flex-start;
}
.paper img {
max-width: 100%;
margin-top: 1rem;
}
.contact-info {
padding: 1rem;
text-align: center;
}
}
/* Very small mobile devices */
@media (max-width: 480px) {
section {
padding: 1rem;
}
header h1 {
font-size: 1.5rem;
}
header p {
font-size: 1rem;
}
h2 {
font-size: 1.25rem;
}
}