-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathst.css
More file actions
56 lines (53 loc) · 916 Bytes
/
st.css
File metadata and controls
56 lines (53 loc) · 916 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
.pix{
border: 0.1px lightgray solid;
transition: 2s;
aspect-ratio: 1/1;
padding: 5px;
flex-grow: 1;
flex-shrink: 0;
background-color: whitesmoke;
}
/*
.pix:hover{
background-color: red;
transition: 0s;
}
*/
#container{
box-shadow: 10px 5px 15px rgba(0, 0, 0, 0.2);
display:grid;
width: 700px;
height:700px;
}
.nob{
margin-top: -15px;
display: flex;
justify-content: center;
}
body{
width: 99%;
align-items: center;
justify-items: center;
justify-content: center;
background-color: #666;
align-content: center;
}
button{
margin: -8px;
background-color: darkcyan;
color: orange;
padding: 10px;
width: 180px;
height:50px;
border: none;
font-size: 20px;
border-radius: 15%;
}
button:hover{
background-color: brown;
color: darkcyan;
transition: 1s;
}
h1{
color: rgb(220, 162, 53);
}