-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
101 lines (87 loc) · 1.58 KB
/
styles.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
body {
margin: 0;
box-sizing: border-box;
background-color: hsl(0, 0%, 95%);
font-family: "Lexend Deca";
}
nav {
background: rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 2%;
margin: 0;
text-align: right;
}
nav a {
text-decoration: none;
background-color: hsla(184, 100%, 22%, 0.856);
color: hsl(0, 0%, 95%);
border-radius: 10px;
width: 15%;
padding: 1% 2%;
}
nav a:hover {
background-color: hsla(31, 77%, 52%, 0.644);
}
h1 {
color: hsl(0, 0%, 95%);
font-family: "Big Shoulders Display";
font-weight: 700;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
justify-content: center;
width: 55%;
}
.one,
.two,
.three {
color: white;
flex: 1;
padding: 5%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.one {
background-color: hsl(31, 77%, 52%);
border-radius: 8px 0 0 8px;
}
.one a {
color: hsl(31, 77%, 52%);
}
.two a {
color: hsl(184, 100%, 22%);
}
.three a {
color: hsl(179, 100%, 13%);
}
.two {
background-color: hsl(184, 100%, 22%);
}
.three {
background-color: hsl(179, 100%, 13%);
border-radius: 0 8px 8px 0;
}
p {
margin-bottom: 5%;
color: hsla(0, 0%, 100%, 0.75);
font-size: 15px;
}
a {
text-decoration: none;
padding: 5%;
background-color: hsl(0, 0%, 95%);
color: black;
border-radius: 25px;
width: 60%;
text-align: center;
font-size: 15px;
margin: 10% 0 0;
}