-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnologies.css
More file actions
49 lines (46 loc) · 864 Bytes
/
technologies.css
File metadata and controls
49 lines (46 loc) · 864 Bytes
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
*{
margin: 0;
padding: 0;
}
.page-wrapper {
width: 1200px;
margin: 0 auto;
font-size: 18px;
background-color: #f0f1f0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 100;
display: flex;
flex-direction: column;
align-items: center;
}
.heading{
margin-top: 4em;
font-size: 36px;
color: #848584;
}
.technologies{
display: flex;
position: relative;
top: 3em;
}
.technology{
border: 1px solid lightgray;
width: 12em;
height: 10em;
margin: 0.5em;
padding: 1em;
background-color: white;
box-shadow: 2px 2px 10px lightgray;
}
.technology > p{
padding-top:1em;
}
img{
width: 100%;
}
.vr-headset{
width: 400px;
height: 400px;
overflow: hidden;
border-radius: 50%;
}