-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainstyle.css
59 lines (57 loc) · 1.11 KB
/
mainstyle.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
*{
margin:0;
padding:0;
}
body{
background-color: rgb(255, 239, 214);
}
h1{
font-family: "Sofia", sans-serif;
font-size: 60px;
text-align: center;
}
.instr{
text-align: center;
font-family: 'Brush Script MT',cursive;
font-size: 30px;
}
p{
font-size: 30px;
}
.choice{
text-align: center;
}
.easy{
background-color: cadetblue;
color: rgb(1, 28, 100);
font-size: 20px;
padding-left: 15px;
padding-right: 15px;
padding-top: 8px;
padding-bottom: 8px;
border-radius: 6px;
border: 2px solid rgb(3, 25, 99);
}
.difficult{
background-color: cadetblue;
color: rgb(1, 28, 100);
font-size: 20px;
padding: 8px;
border-radius: 6px;
border: 2px solid rgb(3, 25, 99);
}
.easy:hover{
background:rgb(255, 136, 156);
}
.difficult:hover{
background:rgb(247, 114, 136);
}
.easy:active{
background: rgb(247, 114, 136);
}
.difficult:active{
background: rgb(247, 114, 136);
}
a{
background: transparent;
}