-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (82 loc) · 1.53 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
85
86
87
88
89
90
91
92
* {
margin: 0;
padding: 0;
}
body{
background-color: #270f36;
width: 300px;
height: 300px;
text-align: center;
}
h1 {
text-align: center;
}
.startButton {
background-color: #f09f9c;
border: none;
color: #270f36;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: 'Heebo', sans-serif;
font-size: 40px;
height: 100px;
width: 200px;
border-radius: 10px;
margin-bottom: 10px;
margin-top: 30px;
position: center;
}
.startButton:hover {
background-color: #fcc3a3;
}
.subButton {
background-color: #c76b98;
border: none;
color: #270f36;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: 'Heebo', sans-serif;
font-size: 20px;
height: 50px;
width: 80px;
border-radius: 10px;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
position: center;
}
.subButton:hover {
background-color: #f09f9c;
}
.howToUse {
margin-top: 15px;
padding: 0;
width: 230px;
display: inline-block;
line-height: 35px;
font-family: 'Heebo', sans-serif;
}
.title {
color: #c76b98;
font-size: 30px;
position: center;
}
.name {
font-family: 'Abril Fatface', cursive;
margin-top: 15px;
color: #c76b98;
font-size: 30px;
position: center;
letter-spacing: 2px;
}
.info {
margin-top: 10px;
color: #f09f9c;
font-size: 15px;
text-align: left;
margin-left: 20px;
line-height: 20px;
overflow: scroll;
}