Skip to content

Instantly share code, notes, and snippets.

View MaximeKoitsalu's full-sized avatar
🍷
Sippin' on a Valpolicella

Maxime Koitsalu MaximeKoitsalu

🍷
Sippin' on a Valpolicella
View GitHub Profile
wrong = 0
answered = 0
program_running = 1
def start_program():
global program_running
user_choice = ""
while program_running:
print_menu()
@MaximeKoitsalu
MaximeKoitsalu / top-card-animation.css
Created October 8, 2018 16:22
top-card-animation
background: linear-gradient(270deg, #00b2e8, #bb99ff);
background-size: 400% 400%;
-webkit-animation: top-card-animation 30s ease infinite;
-moz-animation: top-card-animation 30s ease infinite;
-o-animation: top-card-animation 30s ease infinite;
animation: top-card-animation 30s ease infinite;
@-webkit-keyframes top-card-animation {
0%{background-position:0% 50%}