-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
115 lines (115 loc) · 1.91 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
max-width: 80vw;
margin: 0 auto;
font-family: 'Ubuntu', sans-serif;
}
.navbar {
display: flex;
height: 67px;
font-family: 'Inter', sans-serif;
color: #303031;
}
.navbar li {
list-style: none;
margin: 0 12px;
cursor: pointer;
}
.section1 {
max-height: 100vh;
padding: 20px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 2rem;
}
.topleft {
width: 50%;
}
.topright {
width: 40%;
display: flex;
justify-content: flex-end;
}
.topright .meimg {
width: 100%;
max-width: 300px;
border-radius: 10px;
}
.meimg {
height: auto;
}
.box {
padding: 8px 0;
margin: 12px 22px;
min-width: 20vw;
border: 2px solid rgb(180, 177, 9);
text-align: center;
background-color: #f9f9f9;
border-radius: 8px;
transition: transform 0.3s, box-shadow 0.3s;
}
.box:hover {
transform: translateY(-5px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.box ul {
list-style-type: none;
}
.box ul li {
margin: 12px 2px;
}
.boxes {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.section2 {
margin-top: 20px;
}
.text-center2 {
margin-bottom: 40px;
padding: 0 8vw;
text-align: center;
}
.contact-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
margin-top: 20px;
}
.projects {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.projects ul {
list-style: none;
}
.section3 {
margin-top: 20px;
margin-bottom: 20px;
}
.html {
width: 50px;
height: auto;
}
.footer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 10vh;
font-family: 'Inter', sans-serif;
color: #66645E;
font-size: smaller;
}