-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
110 lines (87 loc) · 1.39 KB
/
styles.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
*{
font-size: 18px;
font-family: -apple-system,BlinkMacSystemFont,"SegoeUI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sansserif;
color: #2D3748;
}
h1{
font-size: 36px;
color: #FFFFFF;
font-family: Georgia, 'Times New Roman', Times, serif;
}
h5{
color: #718096;
}
h3{
color: #48BB78
}
.about > h3{
color: #000000;
}
a{
color: #4299E1;
}
#myPic{
height: 150px;
width: 150px;
border-radius: 50%;
position: relative ;
padding-top: 10px;
}
.container{
display: grid;
grid-template-areas:
"header header"
"article sidebar"
"footer footer";
background-color: white
}
main{
padding:30px
}
header{
grid-area: header ;
display: flexbox;
background-color: #63B3ED;
color: #FFFFFF;
justify-content: center;
align-items: center;
text-align: center;
}
header>p{
color: #FFFFFF;
}
article{
grid-area: article;
max-width: 500px;
}
article > img{
float:right;
height: 150px;
width: 150px;
}
article > p{
margin: 50px;
}
aside{
grid-area: sidebar;
margin: 100px;
max-width:200px;
max-height: auto;
}
aside > p {
padding: 10px;
}
aside > h3{
color:#7FFF00;
}
.about{
background-color:#E2E8F0;
padding: 20px;
}
footer{
grid-area: footer ;
background-color: #2C5282;
}
footer > p{
color:#FFFFFF; ;
}