-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (89 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
102 lines (89 loc) · 1.57 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
99
100
101
102
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: hsl(0, 0%, 95%);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container{
display: flex;
overflow: hidden;
border-radius: 10px;
}
.CardFirst{
background-color: hsl(31, 77%, 52%);
padding: 25px;
width: 260px;
}
.SecondCard{
background-color: hsl(184, 100%, 22%);
padding: 25px;
width: 260px;
}
.ThirdCard{
background-color: hsl(179, 100%, 13%);
padding: 25px;
width: 260px;
}
h1{
color: hsl(0, 0%, 100%);
font-family: "Big Shoulders Display", cursive;
text-transform: uppercase;
font-weight: 700;
height: 70px;
margin-top: 25px;
}
p{
color: hsl(0, 0%, 100%, 0.75);
font-family: 'Lexend Deca', sans-serif;
height: 190px;
}
button{
border: 3px solid hsl(0, 0%, 95%);
padding: 15px;
width: 180px;
border-radius: 30px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: 0.6s;
}
button:hover{
background-color: transparent;
}
#btnOrange{
color: hsl(31, 77%, 52%);
}
#btnOrange:hover{
color: hsl(0, 0%, 95%);
}
#btnCyan{
color: hsl(184, 100%, 22%);
}
#btnCyan:hover{
color: hsl(0, 0%, 95%);
}
#btnDark{
color: hsl(179, 100%, 13%);
}
#btnDark:hover{
color: hsl(0, 0%, 95%);
}
.attribution{
text-align: center;
width: 60%;
color: black;
font-family: sans-serif;
font-size: 18px;
}
@media (max-width: 767px){
.container{
display: block;
}
}