-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (88 loc) · 1.58 KB
/
style.css
File metadata and controls
97 lines (88 loc) · 1.58 KB
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
@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Metal Mania', cursive;
}
body{
background: black;
}
table {
margin: 25px auto;
}
td {
width: 100px;
height: 100px;
color: teal;
font-size:60px;
text-align: center;
padding: 20px 0;
font-weight: bolder;
}
.fake{
color:teal ;
}
/* td:hover {
border: 1px solid grey;
}*/
.vertical {
border-left: 2px solid rgb(79, 243, 14);
border-right: 2px solid rgb(79, 243, 14);
}
.horizontal {
border-top: 2px solid rgb(79, 243, 14);
border-bottom: 2px solid rgb(79, 243, 14);
}
.hdr{
width: 100%;
height: auto;
background: teal;
color: white;
text-align: center;
padding: 50px 0;
font-size: 44px;
letter-spacing: 2px;
text-transform: uppercase;
}
.topnav{
width: 100%;
height: auto;
background: white;
}
.innernav{
width:50%;
margin :0 auto;
background: white;
height: 100%;
display: flex;
justify-content: space-between;
}
@media screen and (max-width:640px){
.innernav{
width:98% !important;
}
.btngrp{
display: flex;
justify-content: space-between;
margin: 0 15px;
}
#plyr1,#plyr2{
letter-spacing: 1px;
}
#plyr2{
margin-left:20px;
}
.selected{
color: white;
background-color: teal;
}
#msgBox{
color: teal;
}
#reset{
cursor:pointer;
}
#reset:hover{
color:red;
}