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
104 lines (83 loc) · 1.63 KB
/
Copy pathstyle.css
File metadata and controls
104 lines (83 loc) · 1.63 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/**
* 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.
*
*/
/**need to think why doing box-sizing**/
* {
box-sizing: border-box;
}
img {
border-radius: 5px;
border-color:silver;
border: 5px solid rgb(196, 201, 57);
}
body {
background-color: #DDFFBC;
padding: 50px;
margin:20;
}
header {
font-family: 'Open Sans Condensed', sans-serif;
text-transform: uppercase;
text-align:center;
padding: 10px;
font-size: 2.2rem;
}
h1 {
color:#52734D;
font-family: 'Open Sans Condensed', sans-serif;
padding: 20px;
margin: 20px;
}
h2 {
color: #91C788;
font-family: 'Open Sans Condensed', sans-serif;
padding: 20px;
margin: 20px;
}
h3 {
color: #91C788;
font-family: 'Open Sans Condensed', sans-serif;
padding: 5px;
margin: 20px;
}
p {
font-family: 'Open Sans Condensed', sans-serif;
text-indent: 50px;
max-width: 100%;
padding: 10px;
margin: 10px;
color:rgb(196, 201, 57);
}
a:link {
color:rgb(196, 201, 57);
text-decoration: none;
}
a:visited {
color:#2cce14;
text-decoration: none;
}
a:hover {
color:rgb(196, 201, 57);
text-decoration: none;
}
article:first-child {
color:rgb(196, 201, 57);
font-size: 20px;
}
footer {
font-family: 'Courier New', Courier, monospace;
text-align:center;
padding: 20px;
margin: 20px;
}
.flex-container {
display: flex;
background-color: #FEFFDE;
flex-wrap:wrap;
border-radius: 10px;
}