-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (87 loc) · 1.76 KB
/
style.css
File metadata and controls
106 lines (87 loc) · 1.76 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
@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
box-sizing: border-box;
margin: 0;
border: 0;
}
body {
background: #333;
color: #fff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
}
h2{
font-size: 45px;
font-weight: 300;
margin: 10px;
}
h2 span {
font-size: 30px;
}
.container{
display: grid;
grid-template-columns: repeat(4,1fr);
grid-gap: 10px;
}
.container > div {
cursor: pointer;
height: 210px;
background-size: cover;
background-attachment: fixed;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
transition: all 0.3s ease-in;
}
.container > div:hover {
opacity: 0.7;
transform: scale(0.99);
}
.container > div:nth-of-type(1){
grid-column: 1/3;
}
.container > div:nth-of-type(6){
grid-column: 3/5;
}
.container > div:nth-of-type(9){
grid-column: 3/5;
}
.container > div:nth-of-type(10){
grid-column: 1/3;
}
.bg1 {
background: url('./img/bg1.jpg');
color: #333;
}
.bg2 {
background: url('./img/bg2.jpg');
}
/* Face Recognition Style */
.backButtons {
background-color: #333;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
border: 2px solid #fff;
border-radius: 10px;
position: absolute;
right: 0;
bottom: 0;
}
.faceRecognitionBody{
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
<<<<<<< HEAD
}
=======
}
>>>>>>> 7abb356fe893502e4d3e177b13c38d77805e7ec1