-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
82 lines (69 loc) · 1.24 KB
/
index.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
header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(177, 168, 241);
padding: 0;
margin: 0;
}
.nav1 {
padding: 10px;
margin-left: -12px;
}
.nav2,
.nav3 {
padding: 6px;
}
.nav a {
font-family: 'Courier New', Courier, monospace;
color: blueviolet;
border-color: crimson;
border-radius: 10px;
}
.nav a:hover {
background-color: rgb(200, 90, 53);
}
#desktop {
width: 50% auto;
height: 50% auto;
}
.image-grid {
max-width: 100%;
max-width: 100%;
padding: 10px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 10px;
}
.image-grid img {
max-width: 100%;
height: 100%;
}
.image {
transition: transform 0.25s ease-in-out;
}
.image:hover {
transform: scale(1.1);
cursor: pointer;
border: 3px solid orangered;
}
.display {
display: flex;
align-items: center;
justify-content: center;
}
.title-name {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 10px;
border: 1px solid rgb(24, 227, 197);
border-radius: 3px;
background-color: rgb(244, 230, 223);
display: inline-block;
padding: 2px;
margin-top: 50px;
}
.title-name:hover {
background-color: navy;
color: white;
}