forked from EdenianKnight/mindsmith-cooksite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
127 lines (103 loc) · 1.98 KB
/
Copy pathstyles.css
File metadata and controls
127 lines (103 loc) · 1.98 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.banner {
background-image: url("images/banner.jpg");
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 400px;
/* Flexbox */
display: flex;
align-items: center;
}
.description {
height: 180px;
width: 35%;
margin: 30px auto 0 auto;
background-color: rgba(250, 250, 250, 0.7);
padding: 20px;
border-radius: 20px;
}
/* Sign-Up or Log in */
.sign-up-or-log-in {
font-size: small;
}
.sign-up-or-log-in button{
height: 18px;
font-size: 12px;
}
section.profile{
display: flex;
justify-content: center;
}
.holder{
display: flex;
width: 100%; /*Changed to 100% from 200px by Mr. Solomon*/
height: auto;
justify-content: center;
}
.mr-solomon,.honour-profile,.mije-profile h3{
text-align: center;
}
.mr-solomon,.honour-profile,.mije-profile{
/* display: inline-block; */
width: 250px;
height: auto;
padding: 10px;
border-radius: 20px;
background-color: gainsboro;
margin-right: 20px;
}
.mr-solomon img{
width: 250px;
height: auto;
padding: 0px;
border-radius: 20px;
}
.mije-profile img{
width: 250px;
height: auto;
border-radius: 20px;
}
.honour-profile img{
width: 250px;
height: auto;
border-radius: 20px;
}
.social-media{
text-align: center;
}
.social-media h4{
color: black;
text-align: center;
}
.social-media a{
text-decoration: none;
margin-right: 30px;
}
.social-media img{
height: 17px;
width: 17px;
margin-right: 5px;
}
.facebook{
color: #0866FF;
margin-left: 0.9em;
}
.youtube{
color: red;
}
.twitter{
color: #1DA1F2;
}
.tiktok{
color: black;
}
.instagram{
color: #E1306C;
}
table,tr,td{
border: 1px solid black;
padding: 10px;
text-align: center;
border-collapse: collapse;
border-radius: 20px;
}