forked from MultiverseLearningProducts/Lightbulb-Selectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (47 loc) · 906 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
*, *:before, *:after {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-family: sans-serif; }
* {
font-family: 'IBM Plex Sans', sans-serif;
}
body {
background-color: black;
}
#wrapper {
width: 90vw;
max-width: 90%;
margin: auto;
background-color: rgba(255, 255, 255, 0.15);
margin-top: 0;
min-height: 100vh;
}
.row {
padding-top: 25px;
display: flex;
width: 100%;
flex-wrap: wrap;
justify-content: space-around;
}
.item {
text-align: center;
background-color: black;
padding: 10px;
margin: 20px;
transition: 0.2s;
}
.lightbulb {
font-size: 10vw;
}
.active {
background: white;
transform: scale(1.1);
box-shadow: 0 0 35px white;
}
.title, .subtitle {
color: white;
text-align: center;
}
.title {
font-size: 4em;
}
.subtitle {
font-size: 2em;
}