A new userstyle
www.roblox.com/home by Carlos
Details
AuthorCarlos
LicenseNo License
Categoryhttps://www.roblox.com/home
Created
Updated
Size3.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Source code
/* ==UserStyle==
@name www.roblox.com/home
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document url-prefix("https://www.roblox.com/home") {
/* Insert code here... */
}body {
background-color: #f2f2f2;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: #333;
margin: 0;
padding: 0;
}
/* Main container for the homepage */
#main {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 20px;
padding: 20px;
}
/* Header styling */
.header {
background-color: #4C88FF;
color: white;
padding: 20px;
font-size: 24px;
text-align: center;
border-radius: 10px;
}
.header .logo {
height: 50px;
margin-right: 10px;
}
/* Navigation bar */
.navbar {
background-color: #ffffff;
padding: 10px 0;
border-radius: 5px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.navbar a {
color: #4C88FF;
text-decoration: none;
margin: 0 15px;
font-size: 16px;
}
.navbar a:hover {
text-decoration: underline;
}
/* Featured games section */
.featured-games {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: space-between;
margin-bottom: 20px;
}
.featured-games .game {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: calc(33% - 20px);
margin-bottom: 20px;
padding: 15px;
}
.featured-games .game img {
border-radius: 8px;
width: 100%;
height: auto;
}
.featured-games .game .game-title {
font-weight: 600;
font-size: 18px;
margin-top: 10px;
}
/* Search bar */
.search-bar {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.search-bar input {
padding: 10px 20px;
font-size: 16px;
width: 70%;
border-radius: 20px;
border: 1px solid #e1e1e1;
box-sizing: border-box;
outline: none;
}
.search-bar input:focus {
border-color: #4C88FF;
}
/* Footer */
.footer {
background-color: #333333;
color: white;
padding: 15px;
text-align: center;
border-radius: 10px;
margin-top: 30px;
}
.footer a {
color: #4C88FF;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
/* Button styling (for homepage buttons like Play, etc.) */
button, .button {
background-color: #4C88FF;
color: white;
border: none;
border-radius: 20px;
padding: 12px 30px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover, .button:hover {
background-color: #366bbf;
}
/* Profile picture and name styling (for user profile section) */
.profile-section {
display: flex;
align-items: center;
gap: 15px;
}
.profile-section .profile-pic {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #e1e1e1;
}
.profile-section .username {
font-size: 18px;
font-weight: 600;
}