-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.css
More file actions
117 lines (97 loc) · 1.81 KB
/
main.css
File metadata and controls
117 lines (97 loc) · 1.81 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.main {
display: grid;
grid-template-rows: repeat(1, 1fr);
grid-template-columns: repeat(6, 1fr);
justify-content: center;
align-items: center;
background-color: rgba(23, 45, 66, 2);
}
.intro {
line-height: 1.5;
word-wrap: break-word;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
width: 100%;
grid-column: 1 / span 6;
color: white;
text-align: center;
}
.cards {
display: flex;
}
.cards .left {
margin: 1rem;
width: 90%;
padding: 2rem;
background-color: white;
color: black;
border-radius: 5px;
border: 1px solid #808080;
}
.left {
margin: 1rem;
margin: 0 auto;
width: 75%;
padding: 2rem;
background-color: white;
color: black;
border-radius: 5px;
border: 1px solid #808080;
}
.cards .right {
margin: 1rem;
width: 80%;
padding: 2rem;
background-color: white;
color: black;
border-radius: 5px;
border: 1px solid #808080;
}
.bundle-logos img {
margin: 0 .5rem;
}
#example-images {
background-color: rgba(55, 45, 66, 2);
display: flex;
flex-direction: row;
justify-content: space-between;
/* flex-wrap: wrap; */
}
#example-images img {
max-width: 95%;
margin: 2rem;
/* padding: 1rem; */
}
#left-col{
min-width: 60%;
}
.btn {
position: relative;
display: block;
padding: 0;
overflow: hidden;
border-width: 0;
outline: none;
border-radius: 2px;
box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
background-color: #2ecc71;
color: #ecf0f1;
transition: background-color .3s;
}
.btn:hover, .btn:focus {
background-color: #27ae60;
}
#content1 ul {
width: 80%;
}
.fine-print {
font-size: .85rem;
padding-right: 1rem;
margin: 0 0 1rem 0;
}
.download > h3 {
color: white;
font-size: 2em;
}
.download > p {
color: white;
}