-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (84 loc) · 1.74 KB
/
style.css
File metadata and controls
98 lines (84 loc) · 1.74 KB
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
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: hsl(0, 0%, 95%);
font-size: 15px;
}
.three-col {
display: grid;
align-items: center;
justify-content: center;
grid-template-areas:
"card1 card2 card3";
width: 1440px;
margin: 0 auto;
height: 90vh;
font-family: 'Lexend Deca', sans-serif;
}
.three-col .card1 {
display: block;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
background-color: hsl(31, 77%, 52%);
color: hsla(0, 0%, 100%, 0.75);
padding: 40px;
}
.three-col .card2 {
display: block;
background-color: hsl(184, 100%, 22%);
color: hsla(0, 0%, 100%, 0.75);
padding: 40px;
}
.three-col .card3 {
display: block;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
background-color: hsl(179, 100%, 13%);
color: hsla(0, 0%, 100%, 0.75);
padding: 40px;
}
h1 {
margin-top: 30px;
font-family: 'Big Shoulders Display', cursive;
font-weight: 700;
font-size: 40px;
color: hsl(0, 0%, 95%);
text-transform: uppercase;
}
p {
font-family: 'Lexend Deca', sans-serif;
font-size: 15px;
margin: 30px 10px 100px 0px;
line-height: 25px;
width: 210px;
}
.btn {
border-radius: 50px;
border: 2px solid hsl(0, 0%, 95%);
width: 140px;
padding: 13px;
font-family: 'Lexend Deca', sans-serif;
font-size: 16px;
}
.btn:hover {
cursor: pointer;
transition: all 0.5s ease;
color: hsl(0, 0%, 95%);
background-color: transparent;
}
.btn:focus {
outline: none;
}
.btn-orange {
color: hsl(31, 77%, 52%);
}
.btn-darkcyan {
color: hsl(184, 100%, 22%);
}
.btn-verydarkcyan {
color: hsl(179, 100%, 13%);
}