-
Notifications
You must be signed in to change notification settings - Fork 0
/
cena.css
61 lines (48 loc) · 933 Bytes
/
cena.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
56
57
58
59
60
61
div {
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
padding: 10px;
color: #711DB0;
}
button {
color: brown;
width: 80px;
height: 40px;
border: 3px solid #711DB0;
border-radius: 10px;
background-color: transparent;
font-size: xx-large;
}
#Si {
grid-row: 5;
grid-column: 5;
}
#No {
grid-row: 5;
grid-column: 6;
}
section {
display: grid;
grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
grid-template-rows: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
width: 1200px;
height: 600px;
align-items: center;
justify-items: center;
}
body {
max-width: 1200px;
max-height: 673px;
margin: 0 auto;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
p {
font-size: xx-large;
justify-content: center;
color: pink;
}