This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnew.css
128 lines (107 loc) · 1.96 KB
/
new.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
margin: 0;
padding: 0;
font-size: 100%;
font-family: 'Lato', sans-serif;
background-color: #3b4145;
}
section {
padding: 50px 0;
display: flex;
color: white;
flex-direction: column;
align-items: center;
justify-content: flex-start;
border-bottom: solid 1px white;
}
section.hidden {
display: none;
}
.start-section {
background-image: url("./img/polygon-background5.jpg");
background-size: cover;
background-attachment:fixed;
background-position: top;
background-repeat: no-repeat;
justify-content: center;
padding: 0 50px;
height: calc(100vh - 1px);
min-height: 100%;
}
.start-section h1{
font: 300 4em/2 'Oswald', sans-serif;
}
.start-section .connect-btn{
display: inline-block;
transition: .3s;
border: none;
border-radius: 5px;
font: bold 25px 'Oswald', sans-serif;
letter-spacing: 1px;
background: white;
padding: 10px 20px;
}
.start-section .connect-btn:active {
box-shadow: inset 0px 0px 31px -5px rgba(0,0,0,0.49);
}
.start-section .connect-btn:active, .start-section .connect-btn:focus{
border: none;
outline:none;
}
h2 {
font: 300 2.5em/2 'Oswald', sans-serif;
}
p {
color: white;
font-family: 'Lato', sans-serif;
margin: 5px;
}
p.value {
font: 300 27px 'Oswald', sans-serif;
}
.battery-section .value {
color: #15aabf;
}
.general-info-section .value {
color: #de2d2d;
}
.general-info-section .data-cell {
width: 15%;
}
.data-container {
width: 100%;
text-align: center;
}
.data-cell {
display: inline-block;
width: 20%;
margin: 0 20px;
vertical-align: top;
}
.canvas-wrapper {
text-align: center;
margin-top: 50px;
/*width: 300px;
height: 300px;*/
width: 50%;
height: 50%;
}
.canvas-wrapper p{
margin-bottom: 15px;
}
.steps-section h2 {
margin-bottom: 0;
}
.steps-section .steps {
margin-top: 10px;
}
.steps-section .steps .value{
color: #fd7e14;
display: block;
text-align: center;
}
html, body{
margin: 0;
padding: 0;
border: 0;
}