Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change bottom of the main page button on hover, change some font styl… #47

Merged
merged 1 commit into from
Jan 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion styles/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ body {

#enterYourName {
padding-bottom: 5%;
font-family: 'Ranchers', cursive;
font-family: 'Ranchers', Arial, sans-serif;
font-size: 5.5vh;
}

Expand All @@ -104,6 +104,8 @@ body {
border-bottom: black solid 1px;
padding: 2% 5%;
background-color: transparent;
font-size: 3vh;
color: black;
}

/* div buttonPlay */
Expand Down Expand Up @@ -139,6 +141,11 @@ ul.bottomOfThePageOptions li {
line-height: 8.5vh;
font-weight: 900;
cursor: pointer;
transition: 0.1s;
}

ul.bottomOfThePageOptions li:hover {
background-color: #6da2ff;
}

ul.bottomOfThePageOptions li img{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import{GameHandler} from "./GameHandler"
import{GameHandler} from "../src/service/GameHandler"

describe('Store user choosen and statistic during game', () => {
it('Should update game statistic', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { QuestionGenerator } from './QuestionGenerator';
import { WHO_IS_THAT_POKEMON } from "./modes";
import { QuestionGenerator } from '../src/service/QuestionGenerator';
import { WHO_IS_THAT_POKEMON } from "../src/service/modes";

const generatedQuestion = new QuestionGenerator(WHO_IS_THAT_POKEMON);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { WHO_IS_THAT_POKEMON } from "./modes";
import { WHO_IS_THAT_POKEMON } from "../src/service/modes";
import {
QuestionService
} from "./QuestionService.js";
} from "../src/service/QuestionService.js";

const quizQuestion = new QuestionService();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { randomNumberInRange } from './randomNumberInRange'
import { randomNumberInRange } from '../src/service/randomNumberInRange'

describe('Test randomNumberInRange function', () => {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { shuffleAnswers } from "./shuffleAnswers";
import { shuffleAnswers } from "../src/service/shuffleAnswers";

describe('Test shuffeAnswers function', () => {

Expand Down