-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (57 loc) · 1.1 KB
/
style.css
File metadata and controls
65 lines (57 loc) · 1.1 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
* {
box-sizing: border-box;
font-family: 'Redressed', cursive;
}
body {
text-align: center;
}
h1{
padding: 1rem;
font-size: 3rem;
color: #52489C;
}
.table {
display: grid;
justify-content: center;
}
.table_board {
display: grid;
background-color: #E6FDFF;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 7px;
width: 50vw;
height: 65vh;
}
.board_data{
display: flex;
background-color: #dae0df;
transition: all 0.35s ease-in-out;
justify-content: center;
color: white;
}
.board_data:hover {
cursor: pointer;
transform: scale(1.05);
}
.board_data_style{
font-size: 7rem;
color: white;
}
.button {
border-radius: 10px;
border: 0;
font-size: 1.5rem;
background-color: #E6FDFF;
padding: .5rem;
margin: 2rem auto;
width: 50%;
color: #52489C;
font-family: 'Roboto', sans-serif;;
}
.button:focus {outline:0;}
@media (max-width: 900px) {
.table_board{
width: 100vw;
}
}