-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
105 lines (89 loc) · 1.8 KB
/
styles.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family : "Josefin Sans", sans-serif;
font-weight:300;
}
html{
font-size: 62.5%;
}
.main-div{
width :100vw;
min-height : 100vh;
display : grid;
place-items : center;
/* background-color : hsl(206,92%,94%); */
background:
/* linear-gradient(red, transparent), */
/* linear-gradient(to top left, lime, transparent), */
linear-gradient(to top right, lightblue, seagreen);
}
.inner-div{
width : 50vw;
background-color: #fff;
padding : 3rem 4rem;
border-radius: 1rem;
box-shadow : 0 1rem 1rem -0.7rem rgba(0,0,0,0.4);
}
.inner-div h2{
font-size : 3.5rem;
font-weight :400;
margin: 1rem 0 4rem 0;
}
.inner-div li{
font-size : 2rem;
list-style : none;
}
li{
margin-top: 0.5rem;
}
input{
cursor: pointer;
}
.submit, .btn{
padding: 1rem 3 rem;
outline : none;
font-size:2rem;
font-size: 400;
display : block;
margin: auto;
border: none;
text-transform: uppercase;
color:#fff;
background-color : #74b9ff;
margin-top: 4rem;
cursor : pointer;
}
#submit{
padding: 0.5rem;
margin-top: 2rem;
cursor:pointer;
}
#submit:hover{
background-color : lightgreen;
transform: scale(1.25);
}
#showScore{
background-color : #dfe6e9;
margin-top : 3rem;
padding : 3rem 4rem;
box-shadow : 0 1rem 1rem -0.7rem rgba(0,0,0,0.4);
}
#showScore h3{
font-size: 3rem;
text-align: center;
}
#showScore .btn{
margin-top: 2rem;
background-color: #55efc4;
color: #2d3436;
}
#showScore .btn:hover{
background-color: #00b894;
color: #fff;
}
.scoreArea{
display : none;
}