-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
119 lines (114 loc) · 2.18 KB
/
styles.css
File metadata and controls
119 lines (114 loc) · 2.18 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
body {
background-attachment: fixed;
background-image: url('images/bg.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
}
table, th, td {
color: aliceblue;
border: 1px solid black;
border-collapse: collapse;
border-radius: 10px;
}
th, td {
background-color: steelblue;
border-radius: 10px;
border-style: none;
}
.navbar {
background-color: #333;
padding: 1rem;
text-align: center;
}
.navbar-nav {
margin: 0 auto;
}
.nav-link {
color: #fff;
transition: color 0.2s ease;
}
.nav-link:hover {
color: #ccc;
}
.hero {
background-color: rgba(0, 0, 0, 0.5);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
}
.hero h1 {
font-size: 48px;
font-weight: bold;
margin-bottom: 1rem;
}
.hero p {
text-align: justify;
text-align: center;
text-justify: inter-word;
}
.portfolio {
padding: 5rem 0;
}
.portfolio img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.about {
padding: 5rem 0;
background-color: #f0f0f0;
}
.about h2 {
font-size: 36px;
font-weight: bold;
margin-bottom: 1rem;
}
.contact {
padding: 5rem 0;
background-color: #333;
color: #fff;
}
.contact h2 {
font-size: 36px;
font-weight: bold;
margin-bottom: 1rem;
}
.contact form {
max-width: 500px;
margin: 0 auto;
}
.contact input, .contact textarea {
width: 100%;
padding: 1rem;
margin-bottom: 1rem;
border: none;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact button {
background-color: #555;
color: #fff;
padding: 1rem 2rem;
border: none;
border-radius: 10px;
cursor: pointer;
}
.contact button:hover {
background-color: #666;
}
.blur-box {
background: rgba(255, 255, 255, 0.2);
border-radius: 10px;
padding: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}