-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (66 loc) · 1.11 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body{
text-align: center;
font-family: 'Monaco', monospace;
}
body{
background-image:url(assets/background.jpg);
background-size: contain;
}
html, body {
padding:0px;
margin-top:0px;
width:100%;
}
.boxed{
background-color:white;
width:50%;
margin:auto;
}
.words{
margin-top:60px;
}
.boxedblack{
background-color:black;
width:50%;
margin:auto;
color:white;
/* padding-bottom:50px;*/
}
a {
text-decoration: none;
color: tan;
}
a:hover {
color:gold;
}
.stupid{
margin-bottom:40px;
}
.bottom{
margin-bottom:60px;
}
iframe{
width:400px;
height: 400px;
}
.grid-container {
margin: auto;
display: grid;
justify-content: center;
grid-row-gap: 30px;
grid-column-gap: 30px;
grid-template-columns: auto auto auto;
/* background-color: #FFC717;*/
/* padding: 50px;*/
}
.grid-item {
/* background-color: rgba(255, 255, 255, 0.8);*/
/* border: 1px solid rgba(255, 122, 98, 0.8);*/
/* padding: 20px;*/
font-size: 20px;
text-align: center;
/*
.grid-container {
display: grid;
grid-template-columns: auto,auto,auto, auto;
}*/