-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
65 lines (54 loc) · 974 Bytes
/
about.css
File metadata and controls
65 lines (54 loc) · 974 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
65
* {
margin: 0;
box-sizing: border-box;
}
nav {
display: flex;
justify-content: space-between;
background-color: black;
padding: 20px;
}
h3 {
font-family: Comic Sans MS, Comic Sans, cursive;
font-size: 35px;
color: white;
margin-left: 60px;
}
.nav-buttons {
display: flex;
justify-content: space-between;
width: 230px;
align-items: center;
margin-right: 60px;
}
a {
text-decoration: none;
font-family: Sans MS, Comic Sans, cursive;
color: white;
font-size: 25px;
}
.programming-all {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: 20px;
}
.programming-text {
color: black;
}
img {
height: 170px;
width: 180px;
}
.jspic {
width: 300px;
}
.sqlpic {
width: 150px;
}
.js-all, .python-all, .html-all, .css-all, .sql-all {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}