-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (96 loc) · 1.9 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
.container{
background-image: url("2.jpg");
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100vh;
box-sizing: border-box;
}
body{
padding: 0%;
margin: 0%;
}
.middle{
border: 2px solid mediumslateblue;
display: flex;
text-align: center;
justify-content: space-between;
flex-direction: column;
width: 25%;
margin-left: 22rem;
margin-top: 5%;
background-color: mediumslateblue;
/* padding-left: 50px; */
}
td {
border: 2px solid #333;
height: 100px;
width: 100px;
text-align: center;
vertical-align: middle;
font-family: "Comic Sans MS", cursive, sans-serif;
font-size: 70px;
cursor: pointer;
}
table {
border-collapse: collapse;
}
table tr:first-child td {
border-top: 0;
}
table tr:last-child td {
border-bottom: 0;
}
table tr td:first-child {
border-left: 0;
}
table tr td:last-child {
border-right: 0;
}
.endgame {
display: none;
width: 200px;
top: 17rem;
background-color: rgba(205,133,63, 0.8);
position: absolute;
left: 50%;
margin-left: -110px;
padding-top: 46px;
padding-bottom: 50px;
text-align: center;
border-radius: 5px;
color: white;
font-size: 2em;
}
.uper{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
text-align: center;
margin-right: 20rem;
/* padding-top: 20px; */
}
h1{
text-align: center;
color:white;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
/* font-weight: 500; */
font-size: 40px;
font-weight: bolder;
}
button{
font-size: 40px;
font-weight: bold;
width: auto;
background-color: transparent;
border: 1px solid black;
color: white;
text-align: center;
}
button:hover{
background-color:white;
border: white;
color: rgb(76, 226, 151);
cursor: pointer;
}