-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTutorialstyle.css
More file actions
102 lines (91 loc) · 1.94 KB
/
Tutorialstyle.css
File metadata and controls
102 lines (91 loc) · 1.94 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
98
99
100
101
102
body {
display: flex;
justify-content: space-between;
align-items: center;
height: 100vh;
margin: 0;
padding: 0 50px;
box-sizing: border-box;
}
.page {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.arrow {
cursor: pointer;
font-size: 2rem;
}
.content {
width: 60%;
text-align: center;
font-size: 2rem;
}
table {
width: 100%;
height: 500px; /*Adjust as necessary*/
border-collapse: collapse;
}
td {
width: 20%; /* This will divide the table evenly into four columns */
height: 50px; /* Adjust as necessary */
border: 1px solid #000;
font-size: 1rem;
}
.score-cell {
background-color: lightgreen;
color: black; /* Adjust text color as needed, black often looks good on green */
}
.multiplier-cell{
background-color: yellow;
color: black; /* Adjust text color as needed, black often looks good on green */
}
.generic-cell{
background-color: cyan;
color: black; /* Adjust text color as needed, black often looks good on green */
}
.shield-cell {
background-color: blue;
color: white; /* Adjust text color as needed, black often looks good on green */
}
/* .top-left-button {
position: absolute;
top: 10px;
left: 10px;
} */
.button{
width: 100px; /* adjust as needed */
height: 50px; /* adjust as needed */
display: flex;
align-items: center;
justify-content: center;
transition-duration: 0.4s;
background-color: white;
box-shadow: 0 9px #999;
color: black;
border: 2px solid green;
font-size: 20px;
}
.top-left{
position: absolute;
top: 10px;
left: 10px;
}
.top-right{
position: absolute;
top: 10px;
right: 10px;
}
.button:hover{
background-color: green;
color: white;
}
.button:active{
background-color: black;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
/* .button-container {
margin-bottom: 100px;
} */