-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrefurbisher1.css
More file actions
121 lines (116 loc) · 2.79 KB
/
refurbisher1.css
File metadata and controls
121 lines (116 loc) · 2.79 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
body {
background: #f5f5f5;
min-height: 100vh;
}
.nav1{
display: flex;
justify-content: center;
align-items: center;
background-color: #333;
padding: 1rem 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.header-row{
display: flex;
align-items: center;
justify-content: center;
gap:2rem;
margin-top: 2rem;
margin-bottom: 2rem;;
}
.nav1 ul{
display: flex;
gap: 2rem;
list-style: none;
margin: 0;
padding: 0;
align-items: center;
width: 100%;
}
.nav1 li a{
color: white;
text-decoration: none;
font-size: 1.1rem;
padding: 0.5rem 1rem;
border-radius: 8px;
transition: background 0.3s, color 0.3s;
}
.nav1 a:hover, .nav1 .active a {
color: #333;
background: #f0c14b;
}
.reimg,.content-row p{
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),box-shadow 0.3s;
}
.reimg:hover,.content-row p:hover{
transform: scale(1.05);
box-shadow: 0px 6px 24px rgba(0,0,0,0.15);
}
.logo{
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover ;
}
h1{
margin:0;
text-align: left;
font-size: 2.5rem;
color:#333;
letter-spacing: 2px;
}
.content-row {
display: flex;
align-items: center;
justify-content: center;
gap: 2.5rem;
margin: 2rem auto;
max-width: 900px;
padding: 2rem;
background: #fff;
border-radius: 24px;
box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.reimg {
width: 40vw;
max-width: 350px;
min-width: 180px;
height: auto;
border-radius: 18px;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
object-fit: cover;
margin: 0;
}
.content-row p {
margin: 0;
font-size: 1.2rem;
line-height: 1.7;
background-color: #f0c14b;
border-radius: 20px;
padding: 2rem;
color: #333;
max-width: 400px;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
@media (max-width: 900px) {
.content-row {
flex-direction: column;
padding: 1rem;
gap: 1.5rem;
}
.reimg {
width: 80vw;
max-width: 90vw;
}
.content-row p {
max-width: 90vw;
font-size: 1.1rem;
padding: 1.2rem;
}
}