-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.css
109 lines (90 loc) · 1.63 KB
/
landing.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
/* Landing Page CSS */
body {
background: whitesmoke;
color: black;
overflow: hidden;
}
/* NAVIGATION*/
.navbar {
display: flex;
flex-wrap: wrap;
padding: 10px 50px 10px 50px;
margin-top: 10px;
}
.navbar-logo img{
max-height: 130px;
}
#get-started {
padding: 10px;
border-color: white;
color: white;
border-radius: 10px;
font-weight: 700;
text-decoration: none;
}
.page-links li {
list-style: none;
display: inline;
margin: 15px;
font-weight: 500;
text-transform: uppercase;
}
@media screen and (max-width: 600px) {
}
.page-links a {
text-decoration: none;
color: white;
}
.page-links a:hover, .page-links .current{
text-decoration: underline;
text-decoration-color: black;
text-decoration-thickness: 2px;
}
hr {
margin-bottom: 0;
color: gainsboro;
}
/* END OF NAVIGATION */
.intro-text {
margin: 25px 60px 10px 60px;
}
h1 {
font-size: 72px;
}
p {
font-size: 20px;
font-weight: lighter;
flex-wrap: wrap;
max-width: 50%;
margin-top: 20px;
line-height: 2;
}
#login {
margin: 40px 60px 60px 60px;
max-width: 30%;
color: black;
}
.canvas-wrapper {
position: fixed;
bottom: 35px;
right: 50px;
z-index: 999;
display: block;
}
#canvas-container {
width: 530px;
height: 280px;
background-color: white;
overflow: hidden;
}
.frame {
border:solid 10px #eee;
border-radius:2px;
box-shadow:0 0 5px 0 rgba(0,0,0,.25) inset, 0 5px 10px 5px rgba(0,0,0,.25);
height:300px;
}
#refresh {
box-shadow:0 0 5px 0 rgba(0,0,0,.25);
margin-top: 10px;
float: right;
}