-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (66 loc) · 1.22 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
html, body, div, h3, p ,h1{
margin: 0;
padding: 0;
}
@font-face {
font-family: quicksand;
src: url(Quicksand-Light.otf);
}
body {
font-family: sans-serif;
}
.container {
max-width: 100%;
margin: 0 0;
}
.row {
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: center;
height: 100%;
}
#First-Spin, #Second-Spin, #Third-Spin {
position: relative;
width: 38.20%;
overflow: hidden;
height: 100%;
}
.side-text {
width: 61.80%;
font-weight: bold;
text-align: justify;
margin-bottom: 30px;
}
@media screen and (max-width:800px) {
.row {
flex-direction: column;
/*margin-bottom: 15%;*/
height: 100%;
}
.row:nth-child(2) {
flex-direction: column-reverse;
}
#Second-Spin, .side-text, #First-Spin, #Third-Spin {
width: 100%;
text-align: justify;
}
#Second-Spin, #First-Spin, #Third-Spin {
max-width: 480px;
}
canvas {
position: static;
}
}
.side-text h1{
padding: 30px;
text-align: justify;
direction: rtl;
color: #a48721;
font-size: 40px;
}
.side-text p {
padding: 10px 30px;
line-height: 26px;
color: #cdcdcd;
}