-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (52 loc) · 823 Bytes
/
style.css
File metadata and controls
61 lines (52 loc) · 823 Bytes
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
body {
background-color: #eee;
}
#container {
display: flex;
justify-content: center;
}
.plan {
display: flex;
flex-direction: column;
flex: 1;
margin: 20px;
padding: 15px 25px;
border: 1px solid #bbb;
border-radius: 5px;
background-color: #fff;
box-shadow: 0 0 5px #ccc;
}
h1 {
font-size: 1.5em;
}
.price {
margin-bottom: 10px;
font-weight: bold;
font-size: 36px;
color: #000;
}
#container h1 {
margin: 10px 0;
font-weight: normal;
}
.button {
align-self: flex-start;
margin: 10px 0px;
padding: 10px 40px;
border: 1px solid #0af;
border-radius: 5px;
background-color: #0af;
color: #fff;
font-size: 1em;
}
ul {
padding: 0 0 0 20px;
}
#container button:hover {
background-color: #0cf;
}
@media (max-width: 1024px) {
#container {
display: block;
}
}