-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
98 lines (84 loc) · 1.41 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
html,
body {
height: 100%;
}
h1 {
text-align: center;
font-family: "Staatliches", sans-serif;
letter-spacing: 2px;
border: 0;
}
h3{
text-decoration: underline;
}
ul {
margin-top: 0px;
margin-bottom: 0px;
}
/*using class name instead of element because of conflicts with description.html*/
.homePageBody {
margin: auto;
display: flex;
/* This centers our sketch horizontally. */
justify-content: center;
background-color: #f9f4ff;
}
form {
margin-top: 430px;
margin-bottom: 0px;
font-weight: 900;
font-size: 20;
}
input {
border-radius: 5px;
height: 25px;
}
.smolInput {
width: 50px;
}
.thiccInput {
width: 100px;
}
.container {
margin: auto;
max-width: 900px;
padding-left: 2rem;
padding-right: 2rem;
width: 100%;
font-family: "Open Sans", sans-serif;
}
.p5Canvas {
margin: 0;
padding: 0;
}
.runButtons {
margin-top: 15px;
display: flex;
justify-content: center;
}
.homePageButton {
color: #ffffff;
font-size: 20;
font-weight: 500;
padding: 10px;
background-color: #3500d3;
border-radius: 5px;
}
.homePageButton_center {
color: #ffffff;
font-size: 20;
font-weight: 500;
padding: 0px 10px 0px 10px;
background-color: #3500d3;
border-radius: 5px;
margin-left: 10px;
margin-right: 10px;
}
#footer {
text-align: center;
font-size: 12px;
border-top: solid black 2px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}