-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
111 lines (89 loc) · 1.28 KB
/
index.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
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
107
108
:root{
font-size:16px
}
body{
font-family:"Roboto", sans-serif;
}
.container{
display:flex;
display:block;
margin:5vw;
}
.bar{
border: 1px solid #00BCD4;
border-radius: 5px;
box-shadow: 0px 3px 20px 2px #35eea4;
width:100%;
height:auto;
box-sizing:border-box;
background-color:#51afa7;
text-align:center;
color:white;
}
.section{
text-align:center;
}
h2{
color: rgba(0,0,0,.87);
font-size: 2rem;
font-weight: 300;
line-height: 32px;
text-align:center;
}
p {
color: rgba(0,0,0,.54);
font-size: 1rem;
line-height: 1.5em;
margin: 0 auto;
max-width: 700px;
}
.row{
display:flex;
flex-direction:row;
align-content:space-between;
padding-top:5vw;
}
.my-image{
border: 1px solid #808482;
border-radius: 5px;
box-shadow: 0px 3px 20px 2px #2c2c2c;
height: 20vw;
margin-right:10vw;
}
.paragraph{
text-align:justify
}
.technology{
margin-top: 10px;
display:flex;
flex-direction:column;
}
.contact{
margin-top:2vh;
}
.icons{
display:flex;
flex-direction:row;
margin-top:2vh;
}
.icons .icon {
margin-right: 10px;
width: 25px;
}
@media only screen and (max-width:800px){
.row{
flex-direction:column;
}
.my-image{
width:20vw;
}
.row .paragraph{
margin: 2vw;
}
}
@media only screen and (min-width:800px)
{
.icons{
justify-content: center;
}
}