-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
84 lines (79 loc) · 1.47 KB
/
Style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Josefin Sans", sans-serif;
font-weight: 300;
}
html {
font-size: 100%;
}
.main-div {
width: auto;
min-height: 100vh;
display: grid;
place-items: center;
background-color: hsl(0, 50%, 90%);
}
.inner-div {
width: 40vw;
background-color: hsl(120, 50%, 95%);
padding: 3rem 8rem;
border: 1rem;
border-radius: 20px;
box-shadow: 10px 10px 5px rgba(0, 255, 0, 0.1);
}
.inner-div h2 {
font-size: 35px;
font-weight: 400;
margin: 1rem 0 2rem 0;
}
.inner-div li {
font-size: 20px;
margin-top: 20px;
list-style: none;
}
.highlight:hover {
display: block;
color: blue;
}
input {
cursor: pointer;
}
#submit,
.btn {
border: 1px solid black;
background-color: white;
padding: 10px 10px;
display: block;
margin: auto;
text-transform: uppercase;
font-size: 16px;
cursor: pointer;
border-color: #2196f3;
border-radius: 7px;
color: dodgerblue;
}
#submit:hover {
background: #2196f3;
color: white;
}
#showscore {
background-color: rgb(47, 226, 167);
margin-top: 3rem;
padding: 3rem 4rem;
}
#showscore h3 {
font-size: 3rem;
text-align: center;
}
#showscore .btn {
margin-top: 2rem;
background-color: white;
color: black;
}
#showscore .btn:hover {
background: #2196f3;
color: white;
}