aboutsummaryrefslogtreecommitdiff
path: root/src/styles/work-categories.css
blob: 507301686907c8325610320c0d0b8d69532e573a (plain) (blame)
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
.category1 {
	background: url(https://i.pinimg.com/originals/1f/3f/fa/1f3ffa4e7f42c15cfec901d301b16e9c.jpg) no-repeat 50% 50%;
	background-size: cover;
}

.category1::after {
	content: "videos.";
	font-family: "Roboto Mono";
	font-size: 36px;
	position: relative;
	color: #fff;
	display: block;
	top: 8%;
	left: -60%;
	right: 0;
	bottom: 0;
}

.category2 {
	background: url(/projects/graphics/devils-work/assets/img.png) no-repeat 50% 50%;
	background-size: cover;
}

.category2::after {
	content: "graphics.";
	font-family: "Roboto Mono";
	font-size: 36px;
	position: relative;
	color: #fff;
	display: block;
	top: 80%;
	left: 90%;
	right: 0;
	bottom: 0;
}

.category3 {
	background: url(https://eldfrog.com/wp-content/uploads/2018/12/programming_languages.png) no-repeat 50% 50%;
	background-size: cover;
}

.category3::after {
	content: "development.";
	font-family: "Roboto Mono";
	font-size: 36px;
	position: relative;
	color: #fff;
	display: block;
	top: 80%;
	left: 90%;
	right: 0;
	bottom: 0;
}

/*
.category3 {
	  background: url(/projects/renders/allegiance/assets/img.png) no-repeat 50% 50%;
	  background-size: cover;
}

.category3::after {
	  content: "allegiance.";
	  font-family: "Roboto Mono";
	  font-size: 36px;
	  position: relative;
	  color: #fff;
	  display: block;
	  top: 80%;
	  left: -50%;
	  right: 0;
	  bottom: 0;
}

.category4 {
	  background: url(/projects/renders/devils-work/assets/img.png) no-repeat 50% 50%;
	  background-size: cover;
}

.category4::after {
	  content: "devils work.";
	  font-family: "Roboto Mono";
	  font-size: 36px;
	  position: relative;
	  color: #fff;
	  display: block;
	  top: 10%;
	  left: 90%;
	  right: 0;
	  bottom: 0;
}
*/

@media (max-width: 768px) {
	.category1::after,
	.category2::after,
	.category3::after {
		content: none;
	}
}