Skip to content

Commit a9da1d7

Browse files
committed
Continue HMW2
0 parents  commit a9da1d7

14 files changed

Lines changed: 335 additions & 0 deletions

.DS_Store

6 KB
Binary file not shown.

css/styles.css

Lines changed: 198 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
/* Tüm renkler style guide kısmından root olarak yazılmıştır */
2+
:root {
3+
--color-primary: #4D5AE5; /* Ana mavi - butonlar, hoverlar */
4+
--color-primary-pressed: #404BBF; /* Hover durumları */
5+
--color-dark: #2E2F42; /* Arka plan için koyu renk */
6+
--color-text: #434455; /* Gövde metin rengi */
7+
--color-muted: #8E8F99; /* Yardımcı açıklama metni */
8+
--color-accent: #E7E9FC; /* Hafif vurgular */
9+
--color-light-bg: #F4F4FD; /* Açık arka planlar */
10+
--color-white: #FFFFFF;
11+
--color-modal: #FCFCFC;
12+
--color-success: #31D0AA; /* Başarı mesajı */
13+
}
14+
15+
/* Ana gövde stili */
16+
body {
17+
color: var(--color-text);
18+
background-color: var(--color-white);
19+
font-family: 'Roboto', sans-serif;
20+
font-size: 16px;
21+
line-height: 1.5;
22+
letter-spacing: 0.02em;
23+
}
24+
25+
/* Başlık stilleri */
26+
h1 {
27+
color: var(--color-dark);
28+
font-size: 56px;
29+
font-weight: 700;
30+
line-height: 1.07;
31+
letter-spacing: 0.02em;
32+
}
33+
34+
h2 {
35+
color: var(--color-dark);
36+
font-size: 36px;
37+
font-weight: 700;
38+
line-height: 1.1;
39+
letter-spacing: 0.02em;
40+
}
41+
42+
h3 {
43+
color: var(--color-dark);
44+
font-size: 20px;
45+
font-weight: 500;
46+
line-height: 1.2;
47+
letter-spacing: 0.02em;
48+
}
49+
50+
/* Hover ve focus durumlarında başlık renk değişimi */
51+
h1:hover,
52+
h2:hover,
53+
h3:hover,
54+
h1:focus,
55+
h2:focus,
56+
h3:focus {
57+
color: var(--color-primary-pressed);
58+
cursor: default;
59+
}
60+
61+
p {
62+
font-size: 16px;
63+
line-height: 1.5;
64+
}
65+
66+
.small-text {
67+
font-size: 12px;
68+
line-height: 1.17;
69+
letter-spacing: 0.04em;
70+
}
71+
72+
.medium-text {
73+
font-size: 16px;
74+
font-weight: 500;
75+
line-height: 1.5;
76+
letter-spacing: 0.02em;
77+
}
78+
79+
/* Buton stili */
80+
.order-btn {
81+
width: 169px;
82+
height: 56px;
83+
padding: 16px 32px;
84+
border: none;
85+
border-radius: 4px;
86+
background-color: var(--color-primary);
87+
color: var(--color-white);
88+
font-size: 16px;
89+
font-weight: 500;
90+
line-height: 1.5;
91+
letter-spacing: 0.04em;
92+
cursor: pointer;
93+
transition: background-color 0.3s;
94+
}
95+
96+
.order-btn:hover,
97+
.order-btn:focus {
98+
background-color: var(--color-primary-pressed);
99+
}
100+
101+
/* Logo stili */
102+
.logo {
103+
font-family: 'Raleway', sans-serif;
104+
font-weight: 700;
105+
font-size: 18px;
106+
line-height: 1.17;
107+
letter-spacing: 0.03em;
108+
text-transform: uppercase;
109+
color: var(--color-primary);
110+
text-decoration: none;
111+
}
112+
113+
.logo span {
114+
color: var(--color-primary)
115+
}
116+
117+
/* Navigation bağlantıları */
118+
nav a {
119+
font-size: 16px;
120+
font-weight: 500;
121+
line-height: 1.5;
122+
letter-spacing: 0.02em;
123+
color: var(--color-dark);
124+
text-decoration: none;
125+
transition: color 0.3s;
126+
}
127+
128+
nav a:hover,
129+
nav a:focus {
130+
color: var(--color-primary-pressed);
131+
}
132+
133+
/* İletişim bağlantıları */
134+
address a {
135+
font-size: 16px;
136+
font-weight: 400;
137+
line-height: 1.5;
138+
letter-spacing: 0.02em;
139+
color: var(--color-text);
140+
text-decoration: none;
141+
transition: color 0.3s;
142+
}
143+
144+
address a:hover,
145+
address a:focus {
146+
color: var(--color-primary-pressed);
147+
}
148+
149+
/* Hero bölümü (Effective Solutions) */
150+
.hero-section {
151+
background-color: var(--color-dark);
152+
color: var(--color-white);
153+
height: 600px;
154+
display: flex;
155+
justify-content: center;
156+
align-items: center;
157+
text-align: center;
158+
padding: 0 15px;
159+
}
160+
161+
.hero-content {
162+
display: flex;
163+
flex-direction: column;
164+
align-items: center;
165+
justify-content: center;
166+
gap: 24px; /* Başlık ile buton arası boşluk */
167+
}
168+
169+
/* Footer stili */
170+
.footer {
171+
background-color: var(--color-dark);
172+
color: var(--color-white);
173+
text-align: left;
174+
padding: 100px 0;
175+
display: flex;
176+
flex-direction: column;
177+
align-items: flex-start;
178+
gap: 16px;
179+
}
180+
181+
.footer .logo {
182+
color: var(--color-primary);
183+
}
184+
185+
.footer p {
186+
max-width: 264px;
187+
font-size: 16px;
188+
line-height: 1.5;
189+
}
190+
191+
/* Yardımcı metin renkleri */
192+
.helper-text {
193+
color: var(--color-muted);
194+
}
195+
196+
.success-message {
197+
color: var(--color-success);
198+
}

images/.DS_Store

6 KB
Binary file not shown.

images/portfolio-1.jpg

355 KB
Loading

images/portfolio-2.jpg

510 KB
Loading

images/portfolio-3.jpg

281 KB
Loading

images/portfolio-4.jpg

397 KB
Loading

images/portfolio-5.jpg

246 KB
Loading

images/portfolio-6.jpg

716 KB
Loading

images/team-1.jpg

190 KB
Loading

0 commit comments

Comments
 (0)