This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
button { | |
background-color: blue; | |
color: white; | |
} | |
button:hover { | |
background-color: darkblue; /* Fare üzerine gelince rengi koyulaştır */ | |
cursor: pointer; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.parent-div { | |
display: flex; /* Flexbox etkinleştirilir */ | |
justify-content: center; /* Yatayda ortalar */ | |
align-items: center; /* Dikeyde ortalar */ | |
height: 100vh; /* Örnek olarak yüksekliği tam ekran yapılır */ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media screen and (max-width: 600px) { | |
body { | |
font-size: 14px; /* Ekran 600px'den küçükse yazı boyutunu küçült */ | |
} | |
} |