-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (73 loc) · 1.26 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
body {
background: black;
}
.container {
width: 600px;
height: 800px;
margin-top: 60px !important;
background: white;
border: 5px double rebeccapurple;
}
#introText {
font-family: "Satisfy", serif;
text-align: center;
color: rebeccapurple;
letter-spacing: .1rem;
margin-top: 20px;
padding-top: 22px;
}
.start {
margin: 0px 245px 10px 405px;
}
.gameChoices{
margin: 60px 245px 10px 360px;
}
.diamond-grid {
margin: 40px 0 10px 105px;
}
ul li {
list-style: none;
float: left;
margin-left: 66px;
margin-top: 20px;
}
/* Base Code for the overall diamond shape via: */
.diamonds {
height: 160px;
width: 160px;
background: transparent;
color: #fff;
display: block;
overflow: hidden;
position: relative;
text-decoration: none;
border: 3px solid #fff;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.diamonds img {
/*visibility: hidden;*/
}
.dia1 {
background: #990069;
/*background: white;*/
}
.dia2 {
background: #b1ff00;
}
.dia3{
background: #00d0ca;
}
.dia4 {
background: #038057;
margin-top: 0;
margin-left: 186px;
}
.dia5 {
background: #ff4400;
margin-left: 70px;
margin-top: 0;
}