-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (81 loc) · 1.56 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
a{
text-decoration: none;
}
body{
background-color: hsl(0, 0%, 95%);
min-height: 100vh;
display: flex;
align-items: center;
font-family: 'Lexend Deca', sans-serif;
font-size: 15px;
font-weight: 400;
}
.container{
max-width: 960px;
margin: 0 auto;
}
.wrapper{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
border-radius: 12px;
margin: 2rem;
overflow: hidden;
}
.container1{
background: hsl(31, 77%, 52%);
}
.container2{
background: hsl(184, 100%, 22%);
}
.container3{
background: hsl(179, 100%, 13%);
}
.flex{
padding: 40px;
}
.flex h2{
font-family: 'Big Shoulders Display', cursive;
font-weight: 700;
color: hsl(0, 0%, 95%);
font-size: 30px;
}
.flex p{
color: hsla(0, 0%, 100%, 0.75) ;
line-height: 1.6;
}
.container1 a{
color: hsl(31, 77%, 52%);
}
.container2 a{
color: hsl(184, 100%, 22%);
}
.container3 a{
color: hsl(179, 100%, 13%);
}
.flex{
padding: 40px;
}
.flex a{
text-decoration: none;
background-color: hsl(0, 0%, 95%);
padding: 13px 27px;
border-radius: 26px;
margin-top: 60px;
display: inline-block;
border: 2px solid hsl(0, 0%, 95%);
transition: all .4s ease-in-out;
}
.flex a:hover{
color: hsl(0, 0%, 95%);
background: transparent;
}
@media only screen and (max-width: 768px){
.wrapper{
grid-template-columns: 1fr;
}
}
@media only screen and (max-width: 425px){
.wrapper{
margin:2rem .5rem;
}
}