-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
108 lines (107 loc) · 1.94 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
* {
margin: 0;
padding: 0;
}
body {
box-sizing: border-box;
background-color: azure;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
min-height: 100vh;
}
.parent {
display: flex;
/* justify-content: center;
align-items: center;
width: 100%;
min-width: 100vh; */
/* flex-direction: row; */
}
.child1 {
background-color: hsl(31, 77%, 52%);
height: 500px;
width: 350px;
border-radius: 10px 0 0 10px;
}
.img1 {
height: 30px;
width: 30px;
padding: 48px;
}
.child2 {
background-color: hsl(184, 100%, 22%);
height: 500px;
width: 350px;
}
.img2 {
height: 30px;
width: 30px;
padding: 48px;
}
.child3 {
background-color: hsl(179, 100%, 13%);
height: 500px;
width: 350px;
border-radius: 0 10px 10px 0;
}
.img3 {
height: 30px;
width: 30px;
padding: 48px;
}
.h1 {
padding-left: 48px;
color: hsl(0, 0%, 95%);
font-family: "Big Shoulders Display", cursive;
font-size: 30px;
font-weight: 700;
}
.p {
font-family: "Lexend Deca", sans-serif;
padding: 48px;
padding-top: 32px;
color: hsla(0, 0%, 100%, 0.75);
line-height: 1.5em;
}
.btn {
padding: 17px 50px;
display: flex;
justify-content: center;
margin-left: 48px;
margin-top: 15px;
border-radius: 30px;
border: none;
font-family: "Lexend Deca", sans-serif;
color: hsl(179, 100%, 13%);
font-size: 16px;
font-weight: 400;
}
.one {
color: hsl(31, 77%, 52%);
}
.one:hover {
cursor: pointer;
background-color: hsl(31, 77%, 52%);
border: 2px solid white;
color: white;
}
.two {
color: hsl(184, 100%, 22%);
}
.two:hover {
cursor: pointer;
background-color: hsl(184, 100%, 22%);
border: 2px solid white;
color: white;
}
.three {
color: hsl(179, 100%, 13%);
}
.three:hover {
cursor: pointer;
background-color: hsl(179, 100%, 13%);
border: 2px solid white;
color: white;
}