-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgas.css
122 lines (97 loc) · 1.87 KB
/
gas.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
body {
background-color: deepskyblue;
text-align: center;
color: white;
font-family: Times, Times New Roman, serif;
}
#title {
font-family: Comic Sans MS, Comic Sans, cursive;
font-size: 40px;
margin-top: 0;
text-shadow: 5px 5px 6px black, -2px -2px 6px red, 0 0 3px black;
}
#subtitle {
font-size: 14px;
text-shadow: none;
font-style: italic;
text-shadow: 2px 2px 4px black;
}
#me {
font-size: 14px;
text-shadow: none;
font-style: italic;
text-shadow: 2px 2px 4px black;
color: white;
}
#balls {
margin-top: 5px;
}
#myCanvas {
margin-top: -20px;
}
#displayTemp {
font-weight: 600;
font-style: oblique;
font-size: 18px;
}
section.footer {
color: black;
font-family: Ubuntu Mono;
font-style: normal;
font-size: small;
}
#disclaimer {
font-size: 74%;
color: gray;
}
.slidecontainer {
margin-left: auto;
margin-right: auto;
margin-top: 25px;
width: 40%;
}
.slider {
-webkit-appearance: none;
border: 1px solid black;
width: 100%;
height: 10px;
border-radius: 5px;
background: orangered;
outline: none;
-webkit-transition: .2s;
transition: background .2s;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 45px;
height: 45px;
border-radius: 45px;
background: url(thermo.png);
background-size: 45px;
background-repeat: no-repeat;
}
.button1
{
font-family: Georgia;
display: inline-block;
padding: 7px 20px;
font-size: 14px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #5561ED;
border: none;
border-radius: 10px;
box-shadow: 0 4px silver;
transition: background-color .5s;
margin-bottom: 5px;
}
.button1:hover {background-color: #3847EA}
.button1:active
{
background-color: #3847EA;
box-shadow: 0 4px darkgrey;
transform: translateY(4px);
}