Skip to content

Instantly share code, notes, and snippets.

View vaniadimova's full-sized avatar
🏠
Working from home

Vania Dimova vaniadimova

🏠
Working from home
View GitHub Profile
@adrianhajdin
adrianhajdin / app styles
Last active April 1, 2024 11:30
Memories Initial Styles
import { makeStyles } from '@material-ui/core/styles';
export default makeStyles(() => ({
appBar: {
borderRadius: 15,
margin: '30px 0',
display: 'flex',
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
App.css
html, body, #root {
font: 0.9rem sans-serif;
background: #0a1f44;
color: #1e2432;
height: 100%;
margin: 0;
}
.main-container {
# step 1 - create an empty list named beatles;
beatles = []
print("Step 1:", beatles)
# step 2 - use the append() method to add the following members of the band to the list: John Lennon, Paul McCartney, and George Harrison;
beatles.append('John Lennon')
beatles.append('Paul McCartney')
beatles.append('George Harrison')