-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTYLE.CSS
More file actions
91 lines (78 loc) · 1.66 KB
/
STYLE.CSS
File metadata and controls
91 lines (78 loc) · 1.66 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
*,
html{
margin: 0;
padding: 0;
}
.CONTAINER{}
body{
background-color: rgba(247, 204, 141, 0.795);
}
.CONTAINER-NAVBAR {
background-color: rgb(252, 175, 60);
width: 100%;
height: 15vh;
}
.UL-NAVBAR{
display: flex;
height:100px ;
justify-content:center;
align-items:center ;
}
.LI-NAVBAR{
font-size: 40px;
list-style-type: none;
padding: 20px;
margin: 5px;
color:blue
}
.LI-NAVBAR:hover{
background-color: rgb(0, 0, 0);
transition: .5s ease-in-out;
transition-delay: .1s;
border-radius: 10px;
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
.A-NAVBAR{
color: wheat;
text-decoration: none;
font-weight: 800px;
}
.CONTAINER-CONTENT{
background-color:rgba(180, 144, 91, 0.801);
display: flex;
justify-content: center;
align-items: center;
height: 75vh;
}
.IMG-CONTENT{
width: 50%;
height: 50%;
}
.A-CONTENT{
background-color: rgb(228, 205, 175);
color: black;
text-decoration: none;
font-size: 30px;
width: 500px;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 80px;
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
.CONTAINER-FOOTER{
height: 10vh;
background-color: rgba(247, 204, 141, 0.795);
display: flex;
justify-content: center;
align-items:center ;
}
.H1-FOOTER{
font: size 1000px; ;
}