-
Notifications
You must be signed in to change notification settings - Fork 0
/
text.css
103 lines (95 loc) · 1.83 KB
/
text.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
100
101
102
103
@font-face {
font-family: "evagria";
src: url("./Evogria.otf");
}
/* @font-face {
font-family: "keepcalm";
src: url("./KeepCalm-Medium.ttf");
}
@font-face {
font-family: "baron";
src: url("./Baron\ Neue\ Bold.otf");
} */
:root {
--nd-font-size1: 76px;
--nd-font-size2: 38px;
}
/*#text-container {
position: absolute;
top: 35vh;
display: fl
left: 5vw;
text-align: center;
width: 45vw;
}*/
#text-container * {
color: white;
/* font-family: 'Didact Gothic', sans-serif; */
font-family: 'evagria';
}
.stuccan-container{
width: 65%;
height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.name {
font-size: var(--nd-font-size1);
letter-spacing: 5px;
}
.dept {
font-size: var(--nd-font-size2);
font-weight: 200;
letter-spacing: 2px;
text-align: center;
}
.stuccan-name:nth-of-type(1) {
opacity: 1;
}
.stuccan-dept:nth-of-type(1) {
opacity: 1;
}
.dummy{
opacity: 0;
font-size: var(--nd-font-size1);
}
.background_container {
background-image: url("imgs/main-bg.jpg");
background-size: cover;
background-repeat: no-repeat;
filter: hue-rotate(150deg);
height: 100vh;
width: 100vw;
position: absolute;
top: 0;
left: 0;
z-index: 5;
transition: 3s;
}
.body_container{
position: absolute;
z-index: 10;
width: 86vw;
height: 80vh;
top: 0;
left: 0;
margin: 10vh 7vw;
overflow: hidden;
box-shadow: 0px 0px 40px black;
}
.container_background{
position: absolute;
z-index: 7;
width: 86vw;
height: 80vh;
top: 0;
left: 0;
margin: 10vh 7vw;
background-image: url("imgs/content-bg.jpg");
background-size: cover;
background-repeat: no-repeat;
filter: hue-rotate(160deg);
transition: 3s;
}