-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (54 loc) · 1012 Bytes
/
style.css
File metadata and controls
65 lines (54 loc) · 1012 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
body {
margin: 0;
background-color: #ff726f;
}
.main {
margin-left: 530px;
display: flex ;
justify-content: center;
align-items:center ;
overflow:hidden;
}
#container {
float: left;
margin-top: 500px;
display: grid;
justify-content: center;
grid-template-columns: repeat(var(--numCols), 1fr);
grid-template-rows: repeat(var(--numRows), 1fr);
margin: auto;
width: 550px;
height: 550px;
background-color: white;
margin-bottom: 300px;
}
.collum {
display: flex;
padding: 3px;
border: 1px solid black;
}
h2 {
font-family: sans-serif;
font-size: 38px;
margin-top: 100px;
text-align: center;
}
button {
display: block;
color: azure;
font-size: 16px;
font-family: sans-serif;
background-color: #66A7C5;
border-color: azure;
margin: 15px;
border-radius: 50px;
padding: 23px
}
.buttons {
float:left;
padding: 0;
margin-left: 0;
}
.main{
display: block;
}