Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

[HELP] I am new to CSS and want to change some things

A topic by Mohamad Ali Awarkeh created Nov 03, 2021 Views: 206
Viewing posts 1 to 2
(1 edit)

Hi all, 


I was hoping someone could help me out. I am new to CSS and I have been trying to mess around with make my page look nicer as to use it as a portfolio. 

I have been reading the CSS references but I am struggling to change the cell sizes, and the amount of cells per row. Would anyone be able to point me in the right direction?

Would be massively appreciated. Thank you! 

Here is the Custom CSS I have so far

.game_cell 
{ 
background-color: #6b95b2; 
padding: 3px; 
border: 3px solid black; 
border-radius: 10px;  
position: relative; 
display: inline-block; 
transition: all 200ms ease-in; 
transform: scale(0.9); 
}  
.game_cell:hover 
{ 
box-shadow: 0px 0px 10px 5px #111111; 
z-index: 1; 
transition: all 100ms ease-in; 
transform: scale(1); 
}  
.game_grid_widget .game_cell  
{ 
text-align: center; 
}
Moderator moved this topic to Questions & Support
This topic has been auto-archived and can no longer be posted in because there haven't been any posts in a while.