-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesH.css
More file actions
135 lines (114 loc) · 2.15 KB
/
stylesH.css
File metadata and controls
135 lines (114 loc) · 2.15 KB
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
129
130
131
132
133
134
135
html, body {
margin: 0;
height: 100%;
font-family: 'Asap', sans-serif;
scroll-behavior: smooth;
}
/*----Titles-------------*/
#homeTitle {
background-image: url("bg.jpg"); /*https://upload.wikimedia.org/wikipedia/commons/8/87/Steinway_grand_piano_strings_and_keys.JPG*/
width: 100%;
height: 100%;
background-size: cover;
background-attachment: fixed;
background-position: 50% 50%;
margin: 0;
padding: 0;
}
@media handheld, only screen and (max-width: 769px) {
#homeTitle {
background-attachment: scroll !important;
}
}
#GO {
color: white;
text-align: center;
padding: 15% 0 10px 0;
}
#logo {
display: block;
margin: auto;
padding: 0 0 20px 0;
width: 30%;
min-width: 150px;
}
.titleBut {
background-color: rgba(0, 0, 0, 0);
color: white;
}
.titleBut:hover {
background-color: rgba(55, 189, 4, 1);
}
#langDiv {
text-align: center;
}
#lang {
display: inline-block;
}
/*-----------Instructions----------*/
h2 {
margin: 0;
padding: 20px 10% 20px 10%;
font-size: 2em;
}
p {
margin: 0;
padding: 0 40% 20px 10%;
font-size: 1.25em;
}
button {
font: 1.1em 'Asap', sans-serif;
width: 100px;
height: 50px;
background: white;
border: 2px solid rgba(55, 189, 4, 1);
transition: background 0.5s ease-in-out;
-webkit-transition: background 0.5s ease-in-out;
}
button:hover {
background: rgba(55, 189, 4, 1);
cursor: pointer;
}
button:active {
transition: background 0s ease-in-out;
-webkit-transition: background 0s ease-in-out;
background: rgba(39, 135, 3, 1);
}
a {
display: block;
color: black;
text-decoration: none;
transition: color 0.5s ease-in-out;
width: 100px;
height: 50px;
margin: 0 auto 50px auto;
}
a:hover button {
color: white;
}
@media handheld, only screen and (max-width: 769px) {
h2 {
padding: 20px 5% 20px 5%;
}
p {
padding: 0 5% 20px 5%;
}
}
/*-------------footer-----------------*/
footer {
text-align: center;
color: white;
background-color: black;
padding: 10px 0 10px 0;
}
footer p {
padding: 10px 0 10px 0;
font-size: 1em;
}
footer a {
display: inline;
color: lightblue;
}
footer a:hover {
color: blue;
}