-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (106 loc) · 1.88 KB
/
style.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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Raleway', sans-serif;;
}
.home {
display: flex;
}
.nav-cont {
min-width: 400px;
height: 100vh;
position: sticky;
top: 0;
left: 0;
background-color: rgb(3, 3, 3);
color: whitesmoke;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 50px 0 50px 0;
}
.nav-cont img {
border-radius: 50%;
}
.nav-cont h1 {
font-size: 3.5rem;
text-align: center;
font-family: 'Allerta Stencil', sans-serif;
}
.nav-cont p {
font-size: 1.2rem;
text-align: center;
line-height: 1.8;
font-weight: 100;
}
.nav-cont a {
text-decoration: none;
cursor: pointer;
color: white;
font-size: 1.5rem;
font-weight: 700;
}
.nav {
display: flex;
gap: 30px;
align-items: center;
}
.cont-cont {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.cont-cont .article {
padding: 50px 100px;
height: auto;
}
.article h1 {
font-size: 3.2rem;
cursor: pointer;
}
.article h2 {
font-size: 1.8rem;
font-weight: 100;
padding-top: 20px;
padding-bottom: 10px;
}
.article h6 {
font-size: 1rem;
font-weight: 700;
padding: 20px 0 10px 0;
}
.article p {
padding: 20px 0 30px 0;
line-height: 36px;
}
.article a {
text-decoration: none;
cursor: pointer;
color: black;
letter-spacing: 0.5px;
text-align: justify;
text-justify: inter-word;
font-size: 1.2rem;
}
.separator {
background: black;
height: 1px;
width: 100%;
}
button {
padding: 10px 30px;
font-size: 1rem;
font-weight: 700;
color: white;
background: rgb(57, 57, 57);
border: none;
border-radius: 10px;
cursor: pointer;
margin: 0 0 50px 0;
}
button:hover {
background: black;
}