-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
71 lines (64 loc) · 973 Bytes
/
index.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
.body {
background-color: burlywood;
margin: 0;
}
.paragraph {
flex-direction: column;
margin-right: 10%;
margin: 5px;
align-items: flex-start;
}
h2 {
color: darkgreen;
margin-left: 5px;
}
.banner {
display: flex;
flex-direction: column;
}
.banner > #bannerImage {
width: 100%;
}
#titleBanner {
display: flex;
flex-flow: row;
border: 3px solid black;
}
#titleandsubtitle {
text-indent: 5px;
color: orangered;
justify-content: flex-start;
border: 3px solid green;
}
#buttonGroup {
justify-content: flex-end;
border: 3px solid red;
}
.button {
color: magenta;
cursor: pointer;
}
.darkButton {
color: magenta;
background-color: rgb(75, 10, 135);
cursor: pointer;
}
img.images {
max-height: 480px;
max-width: 30%;
align-content: space-between;
flex-direction: row;
}
#about .me {
width: 66.6%;
height: auto;
}
.darkColors {
background-color: black;
color: gray;
margin: 0;
}
.defaultColors {
background-color: burlywood;
margin: 0;
}