-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (41 loc) · 745 Bytes
/
style.css
File metadata and controls
42 lines (41 loc) · 745 Bytes
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
html{
height:100%;
width:100%;
}
body{
overflow:hidden;
height: 100%;
width: 100%;
margin:0;
padding:0;
background-color: rgba(255, 255, 0, 0.253);
display: grid;
grid-template:1fr 1fr 1fr/1fr 1fr 1fr;
grid-template-areas: ". form1 ." ". table ." ". reset .";
}
.table{
grid-area: table;
width: 400px;
height:400px;
background-color: rgba(255, 0, 0, 0.473);
display:grid;
}
.tableElement{
background-color: white;
border-style: solid;
border-width: 1px;
}
/*.tableElement:hover{
background-color: black;
}*/
.tableElementHover{
background-color: black;
}
#reset{
grid-area: reset;
max-width: 400px;
}
form{
grid-area: form1;
padding-top: 20%;
}