-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.module.css
More file actions
151 lines (126 loc) · 2.29 KB
/
Copy pathproject.module.css
File metadata and controls
151 lines (126 loc) · 2.29 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
.top {
color: var(--primary-turq);
}
.wrap {
background: transparent;
}
a.link {
position: relative;
margin-bottom: 1rem;
background: transparent;
border: none;
}
a.link {
transition: transform 0.5s;
}
a.link:hover {
transform: scale(0.95);
}
.explore {
width: 100%;
display: flex;
justify-content: flex-end;
position: absolute;
bottom: 10px;
padding: 5px 10px;
align-items: center;
font-size: 100%;
color: var(--brownyn);
padding-bottom: 10px;
}
.under {
z-index: 10000;
position: absolute;
width: 100%;
bottom: 2px;
display: none;
}
a.link:hover > div.imgOverlay > .under {
border: 1px solid var(--primary-turq);
display: block;
transition: border 1s, display 5s ease;
}
a.link:hover > div.imgOverlay > .explore {
color: var(--primary-turq);
transition: color, text-shadow 1s ease;
}
/* title text formatting */
.project {
display: flex;
flex-direction: column;
align-items: flex-start;
position: absolute;
color: var(--bg-dark);
font-weight: bold;
/*font-family: futureaheavy;*/
font-size: 200%;
line-height: 100%;
position: absolute;
top: 25%;
left: -1%;
word-wrap: break-word;
font-weight: bold;
width: 60%;
text-shadow: 1px 1px 2px var(--about-bg);
}
.list {
list-style: none;
font-size: 50%;
display: block;
padding: 0;
text-transform: uppercase;
text-shadow: none;
color: var(--primary-red);
}
.imgOverlay {
overflow: hidden;
display: flex;
justify-content: center;
}
.image {
position: relative;
right: -6rem;
z-index: -1;
opacity: 0.8;
border-radius: 4px;
height: 330px;
max-height: 100%;
max-width: 100%;
}
.web p, .web hr {
color: var(--secondary-red);
font-weight: bold;
opacity: 1;
border-color: var(--about-creme);
}
.mainLogo {
width: 20%;
}
.navl{
color: var(--primary-red);
border: 1px solid transparent;
}
.navl:hover {
color: black;
border: 1px solid black;
}
@media all and (min-width: 1024px) and (max-width: 1280px) {
}
@media all and (min-width: 768px) and (max-width: 1024px) {
}
@media all and (min-width: 480px) and (max-width: 768px) {
.project {
font-size: 150%;
top: 0px;
}
.image {
height: 210px;
max-height: 100%;
}
}
@media all and (max-width: 480px) {
.image {
height: 280px;
max-height: 100%;
}
}