-
Notifications
You must be signed in to change notification settings - Fork 0
/
style1.css
87 lines (80 loc) · 1.56 KB
/
style1.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;
}
/*
body {
background-color: rgb(186, 115, 17);
}
*/
.a-navbar {
color: white;
text-decoration: none;
font-weight: 800;
}
.a-content {
background-color: white;
color: black;
text-decoration: none;
width: 720px;
height: 480px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
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);
}
.navbar-container {
background-color: rgb(32, 134, 112);
width: 100%;
height: 10vh;
}
.ul-navbar {
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.li-navbar {
list-style-type: none;
padding: 20px;
margin: 5px;
color: white;
font-size: 30px;
}
.li-navbar:hover {
background-color: tomato;
transition: .2s ease-in-out;
transition-delay: .1s;
border-radius: 8px;
}
.content-container {
background-color: #f6f6f6;
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
}
.img-content {
width: 50%;
height: 50%;
}
.footer-container {
height: 10vh;
background-color: crimson;
display: flex;
justify-content: center;
align-items: center;
}
.h1-footer {
font-size: 40px;
color: white;
}
#LogData {
background: red;
height: 500px;
width: 500px;
}