-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 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
93
94
95
96
97
98
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Delicious+Handrawn&display=swap');
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.XO {
background-color: white;
height: 100px;
width: 100px;
border: 5px solid rgb(237, 111, 8);
border-radius: 5px;
margin: -5px;
font-size: 50px;
cursor: pointer;
}
.b1 {
border-left: 0px;
border-top: 0px;
}
.b2 {
border-top: 0px;
}
.b3 {
border-top: 0px;
border-right: 0px;
}
.b4 {
border-left: 0px;
}
.b6 {
border-right: 0px;
}
.b7 {
border-left: 0px;
border-bottom: 0px;
}
.b8 {
border-bottom: 0px;
}
.b9 {
border-bottom: 0px;
border-right: 0px;
}
.head {
font-family: 'Delicious Handrawn', cursive;
color: rgb(169, 60, 44);
text-align: center;
font-size: 60px;
margin-top: -10px;
}
.reset {
font-family: 'Delicious Handrawn', cursive;
font-weight: bolder;
font-size: larger;
color: brown;
text-align: center;
margin-top: 50px;
width: 80px;
height: 70px;
border: 5px solid burlywood;
border-radius: 10px;
cursor: pointer;
}
.reset:hover {
background-color: rgb(252, 232, 145);
}
body {
background-color: antiquewhite;
}
.image {
height: 100px;
width: 100px;
margin-top: 10px;
}
.message {
font-family: 'Delicious Handrawn', cursive;
font-size: 40px;
color: rgb(181, 120, 41);
}