-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.css
87 lines (86 loc) · 1.55 KB
/
about.css
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
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background-color: rgb(195, 255, 242);
}
section
{
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 100px;
}
header
{
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 30px 100px;
display: flex;
justify-content: space-between;
align-items: center;
}
header .logo
{
position: relative;
font-size: 2em;
color: rgb(0, 0, 0);
text-transform: uppercase;
font-weight: 700;
text-decoration: none;
letter-spacing: 1px;
}
header .navigation
{
position: relative;
display: flex;
}
header .navigation li
{
list-style: none;
}
header .navigation li a
{
display: inline-block;
color: rgba(206, 69, 69, 0.822);
margin-right: 40px;
text-decoration: none;
}
header .navigation li a:hover
{
color: #833406;
}
.content
{
max-width: 600px;
}
.content .contentBx h2
{
font-size: 2em;
color: rgb(0, 0, 0);
line-height: 1em;
}
.content .contentBx p
{
font-size: 1em;
color: rgb(0, 0, 0);
font-weight: 300;
margin: 20px 0;
}
#foot{
text-align: center;
font-style: italic ;
padding: 3px;
background-color: rgb(170, 170, 170);
color: rgb(0, 0, 0);
}