forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (70 loc) · 1.52 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (70 loc) · 1.52 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
/**
* Add your custom styles below
*
* Remember:
* - Be organised, use comments and separate your styles into meaningful chunks
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/
body {
background-color: rgb(241, 237, 232);
}
.main-arti {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.each-arti {
display: flex;
flex-direction: row;
border: 2px solid rgb(221, 214, 214);
margin-top: 29px;
padding-left: 20px;
box-shadow: ;
}
article:first-child {
background-color: rgb(238, 248, 248);
border-radius: 10%;
}
.navbar {
display: flex;
flex-direction: row;
justify-content: flex-start;
}
a {
padding: 20px;
text-decoration: none;
color: rgb(96, 70, 26);
font-weight: 600;
}
img {
width: 100px;
padding: 20px;
}
section {
display: flex;
flex-direction: row;
justify-content: flex-start;
box-shadow: blue;
}
p,
h1 {
text-align: justify;
font-family: 'Roboto', sans-serif;
padding: 20px;
}
.section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
a:hover {
color: cornflowerblue;
}
.footer {
display: flex;
justify-content: center;
}
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@1,300&family=Open+Sans:ital@1&family=Roboto:ital,wght@1,100;1,300&family=Uchen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300&display=swap');