-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (68 loc) · 1.08 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
68
69
70
*{
margin: 0;
}
nav{
display: flex;
justify-content: center;
align-items: center;
gap: 70px;
}
.image{
height: 65vh;
width: 100%;
}
.flag{
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
}
.gap{
height: 10vh;
}
.main{
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
.main div{
height: 40vh;
width: 20vw;
box-shadow: 0 0 1px 1px black;
transition-duration: 1s;
}
#submain{
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
#submain div{
height: 40vh;
width: 20vw;
box-shadow: 0 0 1px 1px black;
transition-duration: 1s;
}
.main div:hover{
scale: 1.1;
}
#submain div:hover{
scale: 1.1;
}
#pinkshade{
background-color: lightpink;
}
#white{
background-color: antiquewhite;
}
footer{
height: 20vh;
width: 100%;
background-color: brown;
}
footer p{
color: aliceblue;
padding-top: 95px;
padding-left: 550px;
}