-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
87 lines (72 loc) · 1.14 KB
/
Copy pathmain.css
File metadata and controls
87 lines (72 loc) · 1.14 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@import url('https://fonts.googleapis.com/css?family=Monoton');
body {
font: 17px/1.5 'cursive, fantasy, sans-serif;
padding: auto;
margin: auto;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
display: flex;
}
/* name and title */
.topSection {
width: 80%;
margin: auto;
overflow: hidden;
}
/*header*/
header {
background-color: #80ffff;
padding-top: 10px;
min-height: 70px;
border-bottom: black 8px double;
}
#branding {
text-align: right;
}
.logo {
float: left;
width: 30%;
position: relative;
margin-top: -10%;
padding-left: 15%;
}
/*about*/
.myImage {
display: flex;
/*added flex-end here*/
margin: 50px auto;
max-width: 55%;
height: auto;
padding-left: 10%;
}
/*display 3 projects here*/
#boxes {
display: flex;
background-color: #ddff99;
}
.box {
flex-basis: 33%;
padding: 3%;
text-align: center;
border-top: aqua 6px double;
}
.box p {
text-align: left;
}
#boxes a {
color: #ff33bb;
text-decoration: none;
}
#boxes img {
width: 50%;
}
/* name and copyright go here */
#links {
padding: 5px;
background-color: #ff99dd;
text-align: center;
border-top: black 6px double;
}