-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (119 loc) · 1.96 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
*{
border: 0;
margin: 0;
box-sizing:border-box;
}
body{
font-family:"karla";
background-color: whitesmoke;
font-size: 100%;
font-weight:700;
}
main{
display: flex;
height: 100vh;
width: 100%;
padding: 100px 30px;
}
.container{
width: 80%;
padding: 30px;
margin-top: 345px;
margin:auto;
border-radius: 8px;
background-color: white;
box-shadow:0px 0px 14px 1px #00000024;
}
.community{
color:hsl(179, 62%, 43%);
}
.section{
color: hsl(71, 73%, 54%);
margin-top: 20px;
}
.section2{
color: hsl(218, 22%, 67%);
margin-top: 20px;
line-height: 1.5;
margin-bottom: 70px;
}
.flex-container{
margin: -30px;
color: white;
}
.flex-left{
background-color:hsl(179, 62%, 43%);
padding:35px;
line-height: 1.5;
}
.flex-left p{
color:rgba(255, 255, 255, 0.856);
}
.dollar{
font-size:35px;
font-weight: 700;
}
.date{
position: absolute;
color: rgba(247, 243, 243, 0.589);
margin-top: 13px;
margin-left: 14px;
}
.button{
color: white;
background-color:hsl(71, 73%, 54%);
border: none;
outline: none;
cursor: pointer;
width: 100%;
padding:15px;
margin-top: 25px;
border-radius: 4px;
}
.button:hover{
background-color:hsl(71, 73%, 47%);
}
.flex-right{
background-color: hsl(179, 62%, 45%);
padding: 25px ;
}
.right-header{
color: white;
}
.section3{
color: rgba(255, 255, 255, 0.856);
margin-top: 20px;
line-height: 1.5;
}
.attribution{
margin-top: 100px;
text-align: center;
color: black;
}
.attribution a{
color: black;
}
@media screen and (max-width:768px) {
footer{
display: none;
}
}
@media screen and (min-width:768px) {
.container{
width: 50%;
display: flex;
flex-direction:column;
}
.flex-container{
display: flex;
}
.flex-left{
width: 50%;
}
.flex-right{
width: 50%;
}
.attribution{
margin-top: 100px;
}
}