-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel2.css
More file actions
94 lines (86 loc) · 1.68 KB
/
level2.css
File metadata and controls
94 lines (86 loc) · 1.68 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
92
93
94
/*navigation bar*/
body{
width: 100%;
}
.nav-bar ul{
text-decoration: none;
color: black;
display: flex;
flex-direction: row;
justify-content: space-evenly;
margin-bottom: 80px;
}
header{
margin-top: 0px;
}
li a{
padding: 10px 15px;
text-transform: uppercase;
display: block;
text-decoration: none;
color: black;
}
ul{
display: flex;
justify-content: center;
}
.box{
width: 220px;
height: 250px;
background-color: rgb(245,245,245);
border-radius: 5px;
transition: all ease 0.3s;
box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.66);
margin-left: 15px;
margin-top: 60px;
color: white;
padding-top: 10px;
}
.minititle{
font: large;
justify-content: center;
font-weight: bold;
color: black;
padding-left: 10px;
}
li{
font-size: 20px;
color: black;
list-style: none;
font-family: cursive;
padding-left: 20px;
}
/*body*/
body{
height: 90vh;
}
main{
background-image: url("https://image.freepik.com/free-vector/white-digital-matrix-binary-code-numbers-background_1017-25332.jpg");
font-family: sans-serif;
color: white;
}
.image{
height: 80px;
width: 200px;
justify-self: center;
padding-left: 70px;
margin-left: 50px;
}
/*Footer*/
.footer{
background-color: white;
height: 30px;
align-items: center;
display: flex;
justify-content: center;
}
footer a{
text-decoration: none;
color: blue;
font-weight: bolder;
}
p{
margin-left: 400px;
font-size: 30px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}