-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (83 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
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
/*font-family: 'Big Shoulders Display', cursive;
font-family: 'Lexend Deca', sans-serif;*/
}
body{
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-content: center;
font-size: 15px;
color: hsl(0, 0%, 95%);
}
.box-container{
width: 100%;
max-width: 1440px;
display: flex;
justify-content: center;
align-items: center;
flex-flow: wrap;
}
.box{
width: 269px;
padding: 15px;
min-height: 430px;
}
.box1{
background-color: hsl(31,77%,52%);
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.box2{
background-color: hsl(184,100%,22%);
}
.box3{
background-color: hsl(179,100%,13%);
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.content{
padding: 10px;
}
h1{
color: hsl(0,0%,95%);
text-transform: uppercase;
margin: 20px 0;
font-family: 'Big Shoulders Display', cursive;
}
p{
color: hsla(0,0%,100%,0.75);
font-family: 'Lexend Deca', sans-serif;
}
.btn{
margin: 60px 0;
padding: 15px 40px;
border: 0;
border-radius: 30px;
outline: none;
background-color: #FFF;
font-size: 15px;
cursor: pointer;
font-family: 'Lexend Deca', sans-serif;
font-weight: 700;
}
.btn1{
color: hsl(31, 77%, 52%);
}
.btn2{
color: hsl(184, 100%, 22%);
}
.btn3{
color: hsl(179, 100%, 13%);
}
.btn:hover{
background-color: transparent;
border: 2px solid #FFF;
color: #FFF;
transition: 0.4s;
}