forked from Migracode-Barcelona/htmlcss-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphone1.css
More file actions
55 lines (49 loc) · 741 Bytes
/
phone1.css
File metadata and controls
55 lines (49 loc) · 741 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
50
51
52
53
54
55
/* Navbar */
.navbar ul{
flex-wrap: wrap;
justify-content: center;
}
/* Headings */
.heading{
font-size: 1.3rem;
}
/* Gallery Images */
.gallery img{
width: 270px;
height: 360px;
}
/* About Section */
.about{
flex-direction: column;
}
.about h2{
text-align: center;
}
.about img{
width: 200px;
height: 150px;
padding: 0px 15px;
}
/* Message box */
#message{
width: 40%;
height: 200px;
}
/* Boxes */
.box{
height: 150px;
width: 250px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 20px;
margin: 10px;
padding: 10px;
}
.box h2{
color: yellowgreen;
font-size: 1.2rem;
margin-bottom: 20px;
}
.box p{
color: white;
font-size: .8rem;
}