forked from corncob567/MakeUC2019
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (54 loc) · 1021 Bytes
/
style.css
File metadata and controls
68 lines (54 loc) · 1021 Bytes
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
.grid-container {
display: grid;
grid-template-columns: repeat(5, 100px);
grid-template-rows: repeat(5, 100px);
padding: 0px;
text-align: center;
width: 500px;
margin: 0 auto;
}
.grid-item {
background-color: #FFFFFF;
border: 5px solid #0000FF;
padding: 20px;
font-size: 23px;
text-align: center;
}
body{
background-image: url('images/source.gif');
font-family: 'Crete Round', serif;
font-size: 24px;
}
h1 {
font-family: 'Georgia', serif;
font-size: 48px;
color: blue;
text-align: center;
}
img{
object-fit: none;
}
.customize-button{
width: 100px;
position: relative;
top: 90px;
margin: center;
background-color: #8A8CC0;
border: none;
color: #000000;
text-align: center;
text-decoration: none;
display: inline-block;
}
.shuffle-button{
width: 100px;
position: relative;
top: 90px;
margin: center;
background-color: blue;
border: none;
color: #01CCFE;
text-align: center;
text-decoration: none;
display: inline-block;
}