-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (63 loc) · 1.03 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
body{
display: flex;
flex-direction: column;
height: 100vh;
font-family: 'Poppins', sans-serif;
background-color: #fffffe;
justify-content: space-between;
padding:0;
margin:0;
}
.content{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
}
.pixel{
flex: 1;
}
.colorChange{
background-color: #00ebc7;
}
.container{
display: flex;
width:500px;
height:500px;
border: solid 5px #00214d;
background: #FAF9F6;
}
.row{
display: flex;
flex-direction: column;
flex:1;
}
.btns {
display: flex;
gap: 10px;
}
.btn{
font-size: large;
background-color: #00ebc7;
border-radius: 5px;
border:0;
padding: 5px 10px;
color: #00214d;
}
.btn:hover{
cursor: pointer;
box-shadow:2px 5px 5px rgb(231, 219, 219);
}
.header,
.footer{
color: #00214d;
background-color: #f2f4f6;
}
.header{
display: flex;
justify-content: center;
}
.footer{
padding: 10px;
}