-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
134 lines (116 loc) · 2.23 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* Genel Stil */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url(bg.jpg);
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-size: cover;
color: white;
}
h1 {
color: #F19031;
}
li {
color: #e2c256;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
background-image: url(headerbg.jpg);
color: #fff;
padding: 1em;
}
.profile-img {
display: block;
margin: 0 auto;
position: relative;
width: 200px;
height: 170.12px; /* width * 0.866 */
box-sizing: border-box;
-webkit-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
-moz-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
background-image: url(pp.JPG);
background-size: cover;
background-position: center;
}
.header-content {
flex: 1;
text-align: right;
padding-right: 1em;
}
.navbar {
background-color: #060606;
color: #fff;
text-align: center;
}
.navbar ul {
list-style: none;
padding: 0;
margin: 0;
}
.navbar ul li {
display: inline;
margin: 0 1em;
}
.navbar ul li a {
text-decoration: none;
color: #fff;
transition: color 0.3s;
}
.navbar ul li a:hover {
color: #e9b50d;
}
.left {
width: 50%;
position: relative;
margin: auto;
text-align:left;
font-weight: bold;
margin-bottom:5%;
}
.right {
width: 50%;
position: relative;
margin: auto;
text-align:right;
font-weight: bold;
margin-bottom:5%;
}
/* Medya Sorguları */
@media (max-width: 1024px) {
.header {
flex-direction: column;
text-align: center;
padding: 1em;
}
.profile-img {
margin-bottom: 1em;
}
.header-content {
text-align: center;
padding: 0;
}
.left {
width: 80%;
position: relative;
margin: auto;
text-align:left;
border-radius: 5%;
font-weight: bold;
margin-bottom:10%;
}
.right {
width: 80%;
position: relative;
margin: auto;
text-align:right;
border-radius: 5%;
font-weight: bold;
margin-bottom:10%;
}
/* Diğer medya sorgusu kuralları buraya eklenebilir */
}