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
109 lines (101 loc) · 1.77 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (101 loc) · 1.77 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
105
106
107
108
109
/**
* 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.
*
*/
/*Header*/
header{
padding-bottom: 0;
margin-left: 255px;
background-color: rgb(217, 222, 223);
border-radius: 15px;
text-align: center;
font-family:Roboto,'Times New Roman', Times, serif;
font-size: 20px;
}
/*SideBar*/
div.sideBar{
background-color: rgb(80, 182, 80);
height: 100%;
width: 250px;
position: absolute;
top:21px;
}
.profilePic{
width: 150px;
height: 150px;
margin-left: 50px;
border-radius: 50%;
}
.sideBar h2,img + p{
font-size: 25px;
color: white;
text-align: center;
}
form input,button{
margin-bottom: 5px;
margin-left: 10px;
height: 25px;
border-radius: 5px;
font-family: cursive;
font-size: 15px;
font-weight: 150;
color: blue;
}
form p{
color: rgba(21, 123, 226, 0.63);
text-align: center;
font-size: 30px;
}
/*footer*/
footer p{
font-weight: 100;
font-size: 20px;
color: rgb(86, 40, 194);
}
.fa{
padding: 10px;
width:20px;
margin-left:15px;
color:white;
text-decoration: none;
text-align: center;
}
.fa-facebook {
background: #3B5998;
}
.fa-twitter {
background: #55ACEE;
}
.fa-instagram {
background: #125688;
}
.fa-pinterest {
background: #cb2027;
}
/*Main*/
main{
margin-left: 250px;
}
img.articleImg{
width: 150px;
height: 150px;
border-radius: 50%;
}
table{
margin: 20px;
}
.articleTopic{
font-size: 20px;
font-weight: 100px;
font-family: cursive;
}
article:first-child{
background-color: aliceblue;
}
html{
height: 100%;
}