-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (57 loc) · 964 Bytes
/
Copy pathstyles.css
File metadata and controls
64 lines (57 loc) · 964 Bytes
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
body {
color: rgb(124, 45, 45);
padding: 0;
margin: 0;
}
main {
display: flex;
flex-flow: column;
padding: 0 50px;
}
.center {align-items: center;
text-align: center;
}
.left {
align-self: flex-start;
text-align: left;
}
.border-thick {border: solid black 5px}
.Display {
width: 400px;
height: 450px;
border: 1px solid black;
columns: 400px;
margin: 10px;
}
.displayImg {
width: 100%;
}
h1 {
margin: 20px;
margin-left: 45px;
}
nav {
position: fixed;
width: 100%;
top: 0;
background: linear-gradient(to left, rgb(31, 30, 30), rgb(46, 45, 45), rgb(31,30,30));
margin: 0;
padding: 10px;
display: flex;
justify-content: space-around;
}
img {
max-width: 800px;
max-height: 400px;
border-radius: 20px;
}
a:hover {
scale: 1.2;
transition: .5s;
}
a {
border: solid black 1px;
margin: 20px;
border-radius: 20px;
transition: .2s;
}