-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
111 lines (96 loc) · 1.72 KB
/
index.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
.index-container {
/* background-color: #00a1c9; */
padding: 20px;
text-align: center;
display: flex;
flex-direction: column;
}
.index-container img {
border-radius: 0;
border: 0;
}
.index-title {
font-size: 4em;
font-weight: 700;
color: #333;
}
.index-release {
text-align: center;
font-size: 0.8em;
width: 100%;
padding: 0 10px;
box-sizing: border-box;
}
.index-container .docs-doc {
overflow: visible;
text-align: left;
font-size: 1.25em;
line-height: 30px;
padding-top: 0;
margin: 0 auto;
font-size: 16px;
}
.index-buttons {
display: flex;
margin: 15px 15px 30px 15px;
justify-content: center;
}
.index-youtube {
display: flex;
justify-content: center;
margin: 40px 0;
}
.index-youtube iframe {
border: 1px solid #333;
}
.index-example-row {
display: flex;
justify-content: space-between;
}
.index-example-row > div {
flex: 1;
}
.index-example-row > div:first-child {
margin-right: 5px;
}
.index-example-row > div:last-child {
margin-left: 5px;
}
@media (max-width: 850px) {
.index-container {
padding: 0;
box-sizing: border-box;
}
.index-example-row {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.index-container .docs-doc {
width: 100%;
font-size: 1em;
}
.index-container .docs-doc-content {
width: 100%;
padding: 0 10px;
box-sizing: border-box;
}
.index-container .docs-doc-content blockquote {
font-size: 22px;
line-height: 22px;
margin: 5px;
}
}
.index-container .docs-doc-content {
min-height: auto;
}
.index-subtitle {
font-size: 42px;
font-weight: 500;
color: rgba(255, 255, 255, 0.25);
}
.index-motto {
font-size: 32px;
font-weight: 400;
color: #fff;
}