-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.css
89 lines (87 loc) · 1.67 KB
/
blog.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
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap");
html,
body {
overflow-x: hidden;
overflow-y: hidden;
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
background-color: #23153c;
}
nav {
background-color: black;
height: 60px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
box-shadow: 0 0 5px black;
}
.nav-box {
background: transparent;
height: 60px;
width: 75%;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-box span {
color: white;
font-weight: bold;
font-size: 30px;
font-family: "Josefin Sans", sans-serif;
}
.nav-box ul {
display: flex;
width: 18vh;
justify-content: space-around;
align-items: center;
list-style: none;
font-family: "Josefin Sans", sans-serif;
}
.nav-box ul li a {
text-decoration: none;
font-weight: bold;
color: white;
}
.nav-box ul li a:hover {
color: blue;
animation: 3s ease-in-out;
}
.hero {
display: flex;
flex-direction: column;
height: 85vh;
color: white;
margin-top: 2rem;
font-size: larger;
align-items: center;
font-family: "Josefin Sans", sans-serif;
}
.box {
background: rgba(255, 255, 255, 0.13);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
margin-top: 1rem;
display: flex;
flex-direction: column;
align-items: center;
width: 55%;
padding: 1rem;
border: 1px white;
border-color: blanchedalmond;
border-style: solid;
border-radius: 20px;
transition: all 0.2s ease-in-out;
}
.box:hover {
transform: scale(1.005);
}
.icons {
display: flex;
width: 55%;
justify-content: space-between;
align-items: center;
}