-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (50 loc) · 1.06 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
*{
box-sizing: border-box;
padding: 0;
margin: 0;
font-family:Arial, Helvetica, sans-serif
}
body{
background-image: url("bgimg.jpg");
background-repeat: no-repeat;
background-size: cover;
}
.container{
width: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
text-align: center;
justify-content: center;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.sub-contain{
border: 2px solid black;
width: 90px;
height: auto;
justify-content: center;
text-align: center;
/* cursor: pointer; */
margin-right: 20px;
margin-bottom: 20px;
/* margin-left: auto; */
/* padding: 10px; */
}
/* .sub-contain:last-child{
margin-right: 0;
} */
.sub-contain h3{
color: white;
text-transform: uppercase;
font-size: 2em;
}
.sub-contain p{
/* color: rgb(221, 221, 9); */
color: #ffc600;
text-transform: uppercase;
font-weight: 700;
}