-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
99 lines (82 loc) · 1.58 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
/* ELEMENTS */
body,
html {
font-family: Helvetica, Arial, sans-serif;
color: white;
background-color: rgb(24, 24, 27);
height: 100% !important;
}
canvas {
border: 1px solid grey;
}
h1 {
padding-top: 2rem;
}
a {
color: rgb(255, 255, 255);
text-decoration: none;
transition: color 250ms ease-in-out;
}
a:hover {
color: rgb(0, 217, 255);
}
/* CLASSES */
.banner {
text-align: center;
padding-top: 2vh;
padding-bottom: 1vh;
}
.card {
background-color: var(--bg-color);
color: white;
margin: 10px 0px;
padding: 10px;
box-shadow: 0px 0px 8px grey;
}
.list-group {
border-top: 1px solid rgb(128, 128, 128);
border-bottom: 1px solid rgb(128, 128, 128);
}
.list-group-item {
background-color: rgba(34, 38, 43, 0.5);
border-top: 1px solid rgb(128, 128, 128);
border-bottom: 1px solid rgb(128, 128, 128);
color: rgb(245, 245, 245);
}
.my-panel {
border: 2px solid white;
border-radius: 10px;
margin: 10px;
padding: 10px;
}
.my-canvas {
margin: 20px;
}
.section-header {
width: 100%;
padding-top: 1rem;
padding-bottom: 0.25rem;
border-bottom: 1.5px solid grey;
}
.wrapper {
width: 1400px;
height: 700px;
margin: auto; /* center the div */
}
/* IDs */
#controls {
border: 1px solid grey;
border-radius: 10px;
padding: 10px;
}
#main-content {
min-height: calc(100vh - 18.25rem);
}
#project-carousel {
background-color: rgba(0, 0, 0, 0);
box-shadow: 0 0 10px rgba(141, 141, 141, 0.5);
border-radius: 10px;
}
#wrapper {
height: 100%;
}