-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathteamCode.scss
More file actions
61 lines (53 loc) · 1.36 KB
/
teamCode.scss
File metadata and controls
61 lines (53 loc) · 1.36 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
.team-code {
grid-area: teamCode;
background-color: #F0F0F3;
text-align: center;
border-radius: 10px;
box-shadow: -3px -3px 10px 2px white, 3px 3px 10px 2px rgb(192, 192, 192); //box-shadow: none|h-offset v-offset blur spread color
border: 1px solid #eeebf5;
padding-bottom: 10%;
input[type="password"],
select {
display: inline-block;
margin: 0 auto;
color: black;
text-align: center;
}
.teamcodeInput {
width: 65%;
height: 40px;
border-radius: 20px;
display: block;
/* offset-x | offset-y | blur-radius | color */
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.212);
}
.generateButton {
background-color: #ffb181;
color: black;
border: 1px solid black;
padding: 4% 4%;
}
.generateButton:hover{
background-color: #cf8a5f;
}
.generateButton:active{
background-color: #cf8a5f;
}
.submitButton {
background-color: #ffb181;
color: black;
border: 1px solid black;
padding: 4% 4%;
}
.submitButton:hover{
background-color: #cf8a5f;
}
@media only screen and (max-width: 770px) {
h1 {
padding-top: 30%;
}
}
@media only screen and (max-width: 600px) {
padding-bottom: 4%;
}
}