-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
142 lines (134 loc) · 2.48 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
*{
margin: 0;
padding: 0;
}
body{
background-color: rgb(64,64,64);
}
.container{
width:100%;
height: 100%;
display: flex;
position: absolute;
}
.menu{
background-color: #A0A0A0;
position: relative;
width: 25vw;
height: 25vh;
margin-top: 20vh;
margin-left: 10vw;
border: 1vh blue dotted;
display: grid;
padding: 2vh 2vw;
grid-template-rows: auto auto;
}
#start{
background-color: black;
color: #E0E0E0;
text-align: center;
font-size: 5vh;
font-family:cursive;
}
#start:hover{
transform:scale(0.9,0.9);
background:#00CCCC;
color:#000066;
border-color: red;
border-width: thick;
}
#restart{
background-color: black;
color: #E0E0E0;
text-align: center;
font-size: 5vh;
font-family:cursive;
}
#restart:hover{
transform:scale(0.9,0.9);
background:#00CCCC;
color: #000066;
border-color: red;
border-width: thick;
}
@media only screen and (max-width: 1000px)
{
#start{
font-size: 2vh;
}
#restart{
font-size: 2vh;
}
}
@media only screen and (max-height: 1000px)
{
#start{
font-size: 2vh;
}
#restart{
font-size: 2vh;
}
}
.button{
background-color: #E0E0E0;
position: relative;
color: black;
text-align: center;
font-size: min(7vw,13vh);
}
.left {
background-image: url("img1.jpg");
position: relative;
/* height: 100%; */
width: 50vw;
}
h1{
color: #EBBF86;
background-color: black;
margin-top: 10vh;
margin-left: 10vw;
margin-right: 10vw;
text-align: center;
font-family:cursive;
font-size: 10vh;
}
h2{
color:#CC0000;
font-family:cursive;
width:30vw;
font-size:6vh;
}
.glow {
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow .1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #000080, 0 0 40px #000080, 0 0 50px #000080, 0 0 60px #000080, 0 0 70px #000080;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #6A5ACD, 0 0 40px#6A5ACD, 0 0 50px #6A5ACD, 0 0 60px #6A5ACD, 0 0 70px #6A5ACD, 0 0 80px #6A5ACD;
}
}
button:hover{
cursor: pointer;
background:aqua;
box-shadow: 0 0 10px 0 #3498db inset, 0 0 10px 4px #3b39a3;
}
.hide{
display: none;
}
.box1{
background-color: black;
position: relative;
width: 29vw;
height: 48vh;
margin-top: 26vh;
margin-left: 10vw;
display: grid;
grid-column-gap: 1vw;
grid-row-gap: 1.5vh;
grid-template-columns:9vw 9vw 9vw;
grid-template-rows: 15vh 15vh 15vh;
}