-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (65 loc) · 1.2 KB
/
style.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
62
63
64
65
66
67
* {
box-sizing: border-box;
margin: 0;
transition: all 0.3s;
}
body {
justify-content: center;
align-items: center;
min-height: 100vh;
display: flex;
background-color: black;
}
.boxparenret {
background-color: black;
padding: 15px;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
align-items: center;
width: 80vh;
height: 80vh;
border-radius: 10px;
display: flex;
}
.box {
border-radius: 10px;
width: calc(30%);
height: calc(30%);
background-color: #fff;
display: flex;
}
.contanerbtn {
display: flex;
padding: 15px;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
align-items: center;
width: 80vh;
height: 80vh;
}
.butens {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
background-color: goldenrod;
display: flex;
align-items: center;
justify-content: center;
width: calc(50%);
height: calc(50%);
font-size: 60px;
border: 0;
border-radius: 15px;
}
.backdoor {
display: flex;
align-items: center;
justify-content: center;
width: 5vh;
height: 5vh;
background-color: rgb(200, 200, 200);
border: 0;
}
.hide {
display: none;
}