-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (49 loc) · 926 Bytes
/
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
html {
padding: 20px;
}
body {
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
background-color: rgb(165, 221, 52);
}
h1 {
font-family: monospace;
font-style: oblique;
font-variant: small-caps;
color: rgb(128, 13, 80);
}
.container {
display: flex;
flex-wrap: wrap;
width: 400px;
border: 5px solid rebeccapurple;
padding: 50px;
justify-content: center;
border-radius: 100px 0;
}
.square {
transition: 0.8s;
border: 1px solid black;
background-color: rgb(223, 216, 216);
border-radius: 7px;
box-shadow: 1px 1px 1px rgb(53, 47, 47);
}
.btn {
padding: 10px 40px;
border-radius: 0 30px;
border: none;
background-color: aquamarine;
color: rgb(52, 43, 168);
font-size: large;
font-weight: bold;
cursor: pointer;
transition: 1s;
}
.btn:hover {
background-color: rgb(233, 105, 45);
transition: 1s;
color: #fff;
}