-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
101 lines (85 loc) · 1.51 KB
/
styles.css
File metadata and controls
101 lines (85 loc) · 1.51 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
body {
background: url("https://www.toptal.com/designers/subtlepatterns/patterns/linedpaper.png");
background-color: rgb(249,249,249);
font-family: 'Montserrat', sans-serif;
margin: 0 auto;
max-width: 1000px;
}
h1, h2, h3, h4 {
font-family: 'IBM Plex Mono', monospace;
}
h3 {
font-size: 1.6rem;
}
h4 {
font-size: 1.2rem;
}
.larger-text {
font-size: x-large;
}
.banner {
margin: 0 5%;
width: 90%;
}
img#computer {
float: right;
max-width: 300px;
}
.boxes {
display: flex;
flex-flow: row wrap;
justify-content: center;
}
.gradient-box::before {
content: '';
width: 100%;
position: absolute;
top: .75em;
left: .75em;
height: 100%;
z-index: -1;
background: linear-gradient(135deg,#bff3d4 0%,#bbe0f8 50%,#e1c9fe 100%);
}
.gradient-box {
border: 1px #5782f8 solid;
padding: .75em;
position: relative;
background-color: white;
}
.placeholder-box {
margin: 2%;
min-width: 200px;
width: 28%;
}
.content {
padding: 2%;
}
.exhibit {
min-height: 200px;
width: 80%;
margin: 2%;
}
.footer {
height: 200px;
}
ul.organizers li {
list-style: none;
font-family: 'IBM Plex Mono', monospace;
}
.highlight {
background: linear-gradient(135deg,#bbe0f8 50%,#e1c9fe 100%)
}
@media only screen and (max-width: 685px) {
.placeholder-box {
width: 80%;
}
img#computer {
max-width: 100%;
}
}
ul li {
list-style: none;
border-bottom: solid 1px black;
margin: 1%;
padding: 2% 0%;
}