-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (73 loc) · 1.49 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
*,
html {
margin: 0;
padding: 0;
}
.container {}
.container-navbar {
background-color: black;
width: 100%;
height: 10vh;
}
.ul-navbar {
display: flex;
height: 100px;
justify-content: center;
align-items: center;
}
.li-navbar {
list-style-type: none;
padding: 20px;
margin: 5px;
color: aliceblue;
font-size: 35px;
}
.li-navbar:hover {
background-color: crimson;
transition: .5s ease-in-out;
transition-delay: .3s;
border-radius: 8px;
}
.a-navbar {
color: white;
text-decoration: none;
}
.container-content {
background-color: grey;
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
}
.a-content {
color:black;
background-color: white;
text-decoration: none;
font-size: 30px;
width: 720px;
height: 480px;
flex-direction: column;
display: flex;
justify-content: space-evenly;
align-items: 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);
}
.img-content {
width: 40%;
height: 40%;
border-radius: 80px;
}
.fotter-container {
background-color: crimson;
height: 10vh;
display: flex;
justify-content: center;
align-items: center;
}
.fotter-h1 {
font-size: 40px;
color: white;
}