-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (77 loc) · 1.53 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
body{
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: hsl(0, 0%, 95%);
}
.container{
background-color: hsl(0, 0%, 95%);
width: 800px;
height: 400px;
display: flex;
flex-direction: row;
justify-content: stretch;
align-items: stretch;
border-radius: 10px;
}
.cc{
float: left;
width: 33.33%;
}
#d1{
background-color:hsl(31, 77%, 52%) ;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.btn1{
color: hsl(31, 77%, 52%) ;
}
#d2{
background-color:hsl(184, 100%, 22%) ;
}
.btn2{
color:hsl(184, 100%, 22%) ;
}
#d3{
background-color: hsl(179, 100%, 13%);
border-bottom-right-radius:10px ;
border-top-right-radius:10px ;
}
.btn3{
color:hsl(179, 100%, 13%) ;
}
img{
margin-left: 30px;
margin-top: 30px;
}
p{
color: hsla(0, 0%, 100%, 0.75);
margin-left: 27px;
margin-right: 20px;
font-family: 'Lexend Deca', sans-serif;
font-weight: 400;
font-size: 15px;
margin-bottom: 30px;
}
h1{
color: hsla(0, 0%, 100%, 0.75);
margin-left: 27px;
font-family: 'Big Shoulders Display', cursive;
font-weight:700 ;
}
button {
-webkit-border-radius: 30;
-moz-border-radius: 30;
border-radius: 30px;
font-family: Arial;
font-size: 15px;
background: hsla(0, 0%, 100%, 0.75) ;
padding: 10px 20px 10px 20px;
text-decoration: none;
border: 0px;
margin-top: 30px;
margin-left: 27px;
}