-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (83 loc) · 1.56 KB
/
Copy pathstyle.css
File metadata and controls
84 lines (83 loc) · 1.56 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
*{
box-sizing: border-box;
margin: 0px;
}
body{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: auto;
flex-direction: column;
}
header{
padding: 5px;
background-color: black;
color: white;
width: 100%;
display: block;
margin: 0px 0px 0px 0px;
text-align: center;
}
.imgCont{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
img{
margin:20px;
width: 250px;
height: 250px;
border: 2px solid black;
border-radius: 25px;
transition-duration: 0.75s;
transition-timing-function: ease-in-out;
}
img:hover{
opacity: 0.75;
transform: scale(1.05);
box-shadow: 2px 2px 10px 10px rgb(0,0,0);
}
.selector{
display: flex;
justify-content: center;
align-items: center;
}
.item{
margin: 20px 5px;
background-color: rgb(214, 212, 212);
border: none;
height: 50px;
width: 200px;
text-align: center;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.25rem;
}
button{
margin: 20px 5px;
height: 50px;
width: 50px;
background-color: black;
color: white;
border: none;
font-size: 1.25rem;
font-family: Georgia, 'Times New Roman', Times, serif;
}
button:hover{
opacity: 0.75;
}
footer{
background-color: black;
color: white;
font-size: 0.8rem;
width: 100%;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
a{
text-decoration: none;
font-size: large;
color: white;
}