-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (62 loc) · 1.15 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
* {
margin: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
.container {
width: min(700px, 90%);
background: #383e56;
margin: 30px auto;
padding: 20px;
color: white;
border-radius: 10px;
box-shadow: 5px 8px 15px -5px black;
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
text-align: center;
}
.container h2 {
text-align: center;
margin-bottom: 20px;
}
.container button {
padding: 10px 15px;
outline: none;
border: none;
background: white;
cursor: pointer;
width: fit-content;
margin: auto;
-webkit-tap-highlight-color: transparent;
}
.container button:hover {
background: rgb(209, 209, 209);
}
.container button:active {
background: rgb(182, 182, 182);
}
.orientation-info {
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
}
.orientation-info button {
margin: 0;
}
.error-element{
position: fixed;
top: 10px;
left: 50%;
transform: translateX(-50%);
background-color: rgb(255, 0, 0);
color: white;
padding: 5px 10px;
border-radius: 10px;
display: none;
}
b {
color: rgb(76, 255, 40);
}