-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp-style.css
110 lines (107 loc) · 2.28 KB
/
p-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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
* {
margin: 0px;
padding: 0px;
/* outline: 1px dashed red; */
font-family: sans-serif;
}
#wrapper {
width: 1000px;
margin: 0px auto;
}
#header {
background-color: rgb(230,230,230);
padding: 10px 0px;
}
#header h1 {
display: inline-block;
width: 400px;
margin-left: 20px;
}
#header p {
display: inline-block;
vertical-align: top;
margin-top: 8px;
width: 520px;
text-align: right;
font-size: 20px;
}
#main {
background-color: rgb(41,11,11);
padding: 20px;
}
#about {
margin-bottom: 20px;
}
#about img {
height: 250px;
border: 3px solid gray;
}
#about div {
display: inline-block;
vertical-align: top;
width: 540px;
height: 256px;
margin-left: 28px;
background-color: white;
}
#about div h2, #projects div h3, #projects div h4 {
padding: 4px 10px;
background-color: rgb(136,136,136);
color: white;
text-align: left;
}
#about div p, #about div a{
padding: 10px;
}
#about div a {
display: block;
}
#projects div {
width: 300px;
display: inline-block;
vertical-align: top;
background-color: white;
text-align: center;
margin-right: 25px;
}
#projects div:last-child {
margin: 0px;
}
#projects div img {
width: 300px;
}
#projects div p {
margin-top: -6px;
padding: 6px;
height: 140px;
text-align: left;
}
#projects div div {
text-align: left;
}
#projects div div img {
width: 50px;
margin: 3px;
}
#projects div button {
background-color: teal;
color: white;
border-radius: 10px;
border: 1px solid black;
box-shadow: slategray;
margin-bottom: 20px;
padding: 5px;
}
#footer {
text-align: center;
}
#footer p, #footer div {
margin: 10px;
}
#footer img, #footer a {
display: inline-block;
vertical-align: top;
}
#footer img {
height: 20px;
}