-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodder.css
More file actions
71 lines (65 loc) · 1.56 KB
/
todder.css
File metadata and controls
71 lines (65 loc) · 1.56 KB
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
/*Style the header*/
h1 {
font-size: 300%;
color: Black;
letter-spacing: 3px;
text-align: center;
}
p {
font-size: 0.875em;
color: Black;
letter-spacing: 1px;
text-align: center;
}
a:link, a:visited {
background-color: black;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: gray;
}
/*test layout*/
.item1 { grid-area: header; }
.item2 { grid-area: left; }
.item3 { grid-area: center; }
.item4 { grid-area: right; }
.item5 { grid-area: footer; }
.grid-container {
display: grid;
grid-template-areas:
'header header header header header header'
'left left center center right right'
'left left center center footer footer '
'footer footer footer footer footer footer ';
grid-column-gap: 50px;
grid-row-gap: 50px;
background-color: white;
padding: 8px;
}
.grid-container > div {
background-color: #c9b5b6; /* Skin */
text-align: center;
padding: 20px 0;
font-size: 30px;
}
.button {
background-color: #808080; /* gray */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button2 {background-color: #008CBA; color: black;} /* Blue */
.button3 {background-color: #f44336; color: black;} /* Red */
.button4 {background-color: #808080; color: black;} /* Gray */
.button5 {background-color: #555555; color: black;} /* Black */
.button6 {background-color: #c9b5b6; color: black;} /* Skin */