-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
75 lines (62 loc) · 1.25 KB
/
index.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
html {
background: url("https://i.pinimg.com/originals/50/ff/c8/50ffc8da808e31a16eed77b741afe480.gif");
background-size: cover;
background-position-x: center;
text-align: center;
}
/* body {
display: flex;
justify-content: space-between;
} */
.header-div {
background-color: white;
}
h1 {
font-size: 50px;
font-weight: 800;
color: pink;
font-family: monospace;
}
#game-canvas {
/* display: block; */
/* position: relative; */
/* background-image: url('./Connect4Board.png'); */
/* background-repeat: no-repeat; */
margin-bottom: 95px;
/* border: 2px solid red; */
/* background-color: white; */
}
div {
text-align: center;
}
.how-to {
font-size: 33px;
font-weight: 800;
font-family: monospace;
color: dodgerblue;
}
.how-to a {
font-size: 20px;
text-decoration: none;
}
.about-me {
position: absolute;
border: 2px solid white;
background-color: white;
opacity: .7;
width: 300px;
height: 640px;
border: 5px solid #03a9f466;
border-radius: 12px;
}
.game-background {
display: inline-block;
background-color: white;
opacity: .5;
border: 5px solid #03a9f466;
z-index: -1;
width: 750px;
height: 800px;
position: absolute;
border-radius: 12px;
}