-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·55 lines (48 loc) · 953 Bytes
/
styles.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
/* {border: 1px solid green;} */
#title{
display: flex;
background-color: black;
color: white;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
justify-content: center;
}
#body {
background-color: antiquewhite;
}
#container {
display: flex;
flex-direction: row;
justify-content: center;
padding: 50px;
min-width: 600px;
min-height: 600px;
}
.divrow {
border: 1x solid grey;
}
.divsquare {
border: thin solid rgb(175, 175, 175);
padding: 6px;
margin: 0px;
background-color: rgb(255, 255, 255);
}
.divsquare:hover {
background-color: rgb(0, 0, 0);
}
#buttondiv {
display: flex;
flex-direction: row;
justify-content: center;
align-content: center;
}
#gridbtn {
background-color: green;
border: 2px groove darkgreen;
color: white;
padding: 10px;
padding-left: 20px;
padding-right: 20px;
margin: 20px;
justify-content: center;
align-content: center;
}