-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (56 loc) · 869 Bytes
/
style.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
html {
min-height: 100vh;
min-width: 100vw;
}
body {
min-height: 100vh;
min-width: 100vw;
background-color: black;
}
.container-fluid {
min-height: 100vh;
min-width: 100vw;
overflow-y: hidden;
/* border: 1px solid yellow; */
}
#page-row {
min-height: 100vh;
min-width: 100vw;
}
.menu-element {
color: whitesmoke;
margin-top: 2vh;
}
h1 {
color: whitesmoke;
}
hr {
margin-bottom: 30px;
margin-top: 30px;
}
/* modals */
.modal-content {
background-color: black;
color: white;
}
.modal-body-text {
font-size: 20px;
}
.modal-tech {
font-size: 18px;
color: lightslategray;
}
.justify {
text-align: justify;
}
.bi {
font-size: 3rem
}
/* dna helix animation */
.fade-in {
animation: fadeIn 2s;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}