-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (49 loc) · 823 Bytes
/
style.css
File metadata and controls
61 lines (49 loc) · 823 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
body {
padding: 0px;
margin: 0px;
}
.grid {
display: grid;
grid-template-columns: repeat(8, 100px);
grid-auto-rows: 75px;
grid-template-areas:
"logo home tutorials python about"
}
.logo {
grid-area: logo;
padding: 0px;
margin: 0px;
border-style: none;
background-color :white;
}
.logo:hover {
background-color: white;
}
p {
font-size:20px;
padding:20px;
}
button:hover {
background-color: black;
}
button {
padding: 15px;
color: white;
background-color: gray;
}
.buttons {
grid-area: buttons;
align-content:first;
}
.home {
grid-area: home;
}
.tutorials {
grid-area: tutorials;
}
.python {
grid-area: python;
}
.about {
grid-area: about;
}