This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathmain.css
More file actions
119 lines (100 loc) · 1.87 KB
/
main.css
File metadata and controls
119 lines (100 loc) · 1.87 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');/* use in headings */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Quicksand:wght@300&display=swap');/* use in the web*/
:root {
--beige-dark: #e6dacd;
--beige-light: #f4ece6;
--blue-royal: #0150fd;
--black: #000;
--white: #fff;
--heading-font: "Poppins", sans-serif;
--body-font: "Quicksand", sans-serif;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
line-height: 1.4;
}
/*.grid {
display: grid;
grid-template-columns: repeat(8, 1fr);
gap: 10px;
}*/
.wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 100px;
}
.box2 {
display: grid;
justify-content: flex-end;
grid-column-start: 1;
grid-column-end: 4;
grid-row-start: 1;
grid-row-end: 3;
}
.box3 {
grid-column-start: 1;
grid-row-start: 2;
grid-row-end: 4;
}
.header {
display: flex;
flex-direction: row;
width: 100%;
justify-content: space-between;
}
.header-content {
display: flex;
flex-direction: column;
}
.square {
background-color: blue;
height: 2rem;
width: 2rem;
margin-right: 1rem;
}
.first-header {
display: flex;
flex-direction: row;
align-items: center;
}
.hidden{
display: flex;
flex-direction: row;
margin: 0 10px 0 0;
}
.fa {
padding: 20px;
font-size: 30px;
width: 30px;
text-align: center;
text-decoration: none;
margin: 3px 2px;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background: white;
color: #3B5998;
}
.fa-twitter {
background: white;
color: #55ACEE;
}
.fa-linkedin {
background: white;
color: #007bb5;
}
.fa-instagram {
background: white;
color: #125688;
}
.social-media{
display: flex;
flex-direction: row;
align-items:;
}