-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles_smaller_works.css
77 lines (73 loc) · 1.39 KB
/
styles_smaller_works.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
/*SECTIONS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
section
{
background: rgb(30,30,30);
position: relative;
width: 1200px;
min-width: 620px;
margin: 0px;
}
.main-section
{
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(1, 1fr);
grid-column-gap: 15px;
grid-row-gap: 50px;
justify-items: center;
margin-left: auto;
margin-right: auto;
height: auto;
position: relative;
background-size: 100%;
padding: 50px 0 50px 0;
}
.main-section div
{
background-color: black;
width: auto;
max-width: 350px;
min-width: 190px;
height: auto;
padding-bottom: 20px;
display: inline-block;
}
.main-section div a
{
transition: filter 0.5s linear;
filter: grayscale(0%);
text-decoration: none;
color: inherit;
}
.main-section div a:hover
{
transition: filter 0.5s linear;
filter: grayscale(100%);
}
.main-section div a ul
{
display: inline-block;
margin: 0px;
padding: 0px;
}
.main-section div a ul li
{
display: inline-block;
width: 100%;
text-align: center;
}
.main-section div a ul li img
{
display: inline-block;
width: 100%;
}
.main-section div a ul li p
{
color: rgb(150,150, 150);
height: auto;
}
.project-display-text
{
height: 30px;
}
/*SECTIONS |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/