-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (45 loc) · 887 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
nav{
display: flex;
align-items: center;
justify-content: space-between;
}
.slogan{
color: red;
padding: 10px;
}
li{
display: inline-block;
padding: 10px;
list-style-type: none;
transition: 0.2s;
cursor:pointer;
}
li:hover{
transform: scale(1.02);
}
.Main_Box{
display:flex;
background-color: #ffffff;
justify-content: center;
flex-wrap: wrap;
width: 100%;
padding:50px;
gap: 30px;
}
.box{
background-color: #eeeeee82;
text-align: center;
font-size: 17px;
width: 15%;
padding: 10px 60px;
border: 2px solid #b9b9b982;
transition: 0.3s;
}
.box:hover{
box-shadow: 0 8px 16px 0 rgba(29, 28, 28, 0.2);
transform: scale(1.04);
border: 2px solid #b9b9b900;
}
.foo{
text-align: center;
}