-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
114 lines (96 loc) · 1.53 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* EagleSoftworks
2018 Diffusion Simulation Styles */
* {
padding: 0;
margin: 3px;
}
body {
background-color: #232326;
}
div {
margin: 0;
}
h1 {
margin: 0;
color: white;
/*this margin somehow goes outside the div, h2 doesn't*/
}
h2 {
margin: 5px;
color: white;
}
h3 {
color: white;
font-weight: normal;
margin-top: 0;
margin-left: 20px;
margin-right: 10px;
}
p {
color: black;
font-size: 18px;
}
button {
height: 40px;
padding: 0 15px;
font-size: 16px;
font-weight: bold;
border-width: 3px;
border-radius: 15px;
margin-bottom: 5px;
}
#mainPage {
width: 1030px;
min-height: 635px;
text-align: center;
margin: 0 auto;
}
span {
font-weight: bold;
}
#titleCanvasDiv {
width: 760px;
height: 625px;
float: left;
/*background-color: orange;*/
}
#titlesDiv {
height: 125px;
/*max-height: 100px;*/
/*background-color: purple;*/
}
#spacerDiv {
width: 750px;
height: 25px;
}
.border {
border-width: 2px;
border-radius: 10px;
border-style: solid;
border-color: #000000;
}
#myCanvas {
background-color: white;
margin: 0;
}
#buttonShelf {
width: 255px;
min-height: 625px;
background-color: white;
text-align: center;
float: right;
margin: 0;
}
.row {
width: 245px;
float: left;
margin-top: 10px;
}
#timer-input {
width: 80px;
height: 30px;
margin: 3px 20px 10px 20px;
font-size: 20px;
text-align: center;
border-radius: 10px;
}