-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (85 loc) · 1.59 KB
/
styles.css
File metadata and controls
103 lines (85 loc) · 1.59 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
}
.col_container {
height: 100vh;
display: flex;
position: relative;
}
.popup_container {
position: absolute;
width: 30%;
top: 100px;
left: 44.8%;
margin: 0 auto;
}
.popup_container .popup_text {
padding: 10px;
color: #000;
border-radius: 10px;
position: absolute;
font-size: 16px;
font-weight: bold;
text-align: center;
background: rgba(256, 256, 256, 0.5);
border-radius: 6px;
z-index: 1;
visibility: hidden;
opacity: 0;
-webkit-transition: all 2s ease-out 0s;
-moz-transition: all 2s ease-out 0s;
-ms-transition: all 2s ease-out 0s;
-o-transition: all 2s ease-out 0s;
transition: all 2s ease-out 0s;
}
.popup_container .show {
visibility: visible;
-webkit-opacity: 0.90;
-moz-opacity: 0.90;
opacity: 0.90;
}
.instuctions_text {
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
background: rgba(256, 256, 256, 0.5);
}
.col {
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.col h2 {
padding: 10px;
color: #fff;
border-radius: 10px;
transition: 0.3s;
}
.col h2:hover {
background: rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.col button {
outline: none;
border: none;
color: #fff;
background: transparent;
font-size: 1.5rem;
border-radius: 5px;
transition: 0.3s;
}
.col button:hover {
background: rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.col i {
pointer-events: none;
}