-
Notifications
You must be signed in to change notification settings - Fork 0
/
phone.css
54 lines (52 loc) · 986 Bytes
/
phone.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
.navbar{
display: flex;
justify-content: center;
height: 70px;
align-items: center;
position: sticky;
top: 0;
opacity: 0.8;
}
#portfolio p{
/* margin: 3%; */
color: rgb(0, 247, 173);
font-size: 1rem;
padding-left: 7%;
}
.columns{
grid-template-columns: auto;
justify-content: center;
}
.box{
height: 200px;
width: 500px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 20px;
margin: 10px;
padding: 20px;
}
.box h2{
color: yellowgreen;
font-size: 2rem;
margin-bottom: 40px;
}
.box p{
color: white;
font-size: 1.1rem;
}
.handle{
display: flex;
flex-direction: column;
/* align-items: center; */
justify-content: center;
}
#submit{
padding: 2% 3%;
margin: 17%;
width: 15%;
border-radius: 20px;
background-color: #27d700dc;
color: white;
border: none;
outline: none;
}