-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
91 lines (86 loc) · 1.46 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
body {
height: 100%;
}
header {
text-align: center;
}
h3 {
width: 517px;
margin-top: 0px;
margin-bottom: 0px;
padding: 0px;
text-align: center;
}
button {
margin-bottom: 2px;
margin-top: 2px;
margin-right: 2px;
}
#profile-image {
height: 250px;
border-radius: 100%;
}
#simulations, #text-processors, #featured-projects {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.navigation-bar {
width: 500px;
margin-bottom: 5px;
}
.permutor-container {
padding: 5px;
}
.container {
position: relative;
outline: 3px solid black;
margin-bottom: 50px;
width: 500px;
height: 500px;
}
.io-container {
position: relative;
width: 500px;
height: 500px;
margin-bottom: 50px;
outline: 3px solid black;
}
.io-container-subcontainer {
width: 500px;
height: 250px;
}
.io-container div:first-child {
outline: 3px solid black;
word-wrap: break-word;
overflow-y: scroll;
}
.ball, .pacman {
z-index:4;
position: absolute;
width:50px;
height:50px;
}
.ball {
border-radius: 50%;
}
.max-standard {
max-height: 3rem;
}
.flex-container {
display: flex;
align-items: center;
justify-content: center;
}
.grid-container {
display: grid;
grid-template-columns: repeat(5, 60px);
grid-template-rows: repeat(1, 60px);
grid-gap: 10px;
}
/* #map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
} */