google / google/material-design-lite

Roblox

Open
#5,466 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
HTML
Stars
32.2k
Forks
4.9k
PR merge metrics
No merged PRs in 30d

Description

Mini-Roblox

body { font-family: Arial, sans-serif; background: #f0f0f0; margin: 0; padding: 0; }
header { background: #4CAF50; color: white; padding: 1em; text-align: center; }
.container { padding: 2em; max-width: 500px; margin: auto; background: white; border-radius: 8px; }
input { width: 100%; padding: 0.5em; margin: 0.5em 0; }
button { padding: 0.5em 1em; background: #4CAF50; color: white; border: none; cursor: pointer; }
button:hover { background: #45a049; }
.game { padding: 1em; margin: 0.5em 0; background: #e0e0e0; border-radius: 5px; }

Mini-Roblox


Регистрация / Вход




Зарегистрироваться


Игры


Игра 1 Играть

Игра 2 Играть

Игра 3 Играть

function register() {
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
if(username && password){
alert('Регистрация успешна! Привет, ' + username);
document.getElementById('auth').style.display = 'none';
document.getElementById('games').style.display = 'block';
} else {
alert('Пожалуйста, заполните все поля.');
}
}

function playGame(gameName){
alert('Запуск ' + gameName + ' ... 🎮');
}

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.