-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (100 loc) · 1.84 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
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
:root {
--bgColor: #E3AC82;
--textColor: black;
--textHoverColor: #ED2939;
--yellow: #C9AC9B;
--standout: #ED2939;
}
body { font-family: "Times New Roman", Times, serif;
background-image: url("./background.jpg");
background-size: cover;
background-color: var(--bgColor);
}
.center {
margin: auto;
width: 50%;
padding: 10px;
text-align: center;
}
a:link, a:visited, a, p {
color: var(--textColor);
line-height: 48px;
text-decoration: none;
font-size: 32px;
}
a:hover {
color: var(--textHoverColor);
}
h3 {
font-size: 12px;
color: var(--textColor);
}
input[type=text], select {
width: 100%;
padding: 12px 20px;
margin: 0px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.right {
float:right;
display:inline;
}
.info {
display: block;
position:absolute;
width: 40%;
margin-left: 30%;
margin-top: 50%;
font-size: 32px;
}
button {
width: 100%;
background-color: var(--yellow);
padding: 14px 20px;
margin: 4px 0;
border: 4px var(--textColor) solid;
cursor: pointer;
}
button:hover {
background-color: var(--textHoverColor);
}
button:active {
background-color: #6A3F14;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
input[type=submit] {
width: 100%;
background-color: var(--yellow);
color: white;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=range] {
-webkit-appearance: none;
width: 97%;
height: 25px;
border: 4px var(--textColor) solid;
background-color: var(--yellow);
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.sliderWrapper {
width: 97%;
overflow:hidden;
white-space: pre-wrap;
}
.sliderText {
white-space: pre-line;
font-size: 1.1vw;
margin-top: -7px;
margin-left: 10px;
position:absolute;
}