-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
99 lines (79 loc) · 1.35 KB
/
styles.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
html {
margin-top: 6%;
}
body {
background-image: url(bark.png);
background-size: cover;
background-repeat: repeat-y;
/* background-color: rgba(255, 255, 255, 0.95); */
padding: 4rem 2rem;
background-position: center;
/* for parallax */
background-attachment: fixed;
}
.mainimg {
max-width: 100%;
height: auto;
}
.logowords {
width: 100%;
height: auto;
max-width: 300px;
min-width: 250px;
}
.logopic {
max-width: 200px;
width: 100%;
height: auto;
}
.fullwidth {
width: 100%;
}
/* .transparent {
background-color: transparent;
border: none;
box-shadow: none;
} */
#withyou,
#ourwork,
#m3d {
scroll-margin-top: 100px;
}
.card,
.card-footer {
background-color: transparent;
border: none;
box-shadow: none;
}
/* /////////gallery /////// */
#photogrid {
display: grid;
grid-template-columns: auto auto auto;
opacity: 1;
}
.grid-item {
padding: 20px;
font-size: 20px;
text-align: center;
}
.pic {
width: 100%;
opacity: 1;
transition: 0.3s;
}
@media only screen and (max-width:700px) {
#photogrid {
display: grid;
grid-template-columns: auto auto;
opacity: 1;
}
body {
font-size: 20px;
}
.card-text {
font-size: 20px ;
}
}
.myfooter {
margin-bottom: 2rem;
}