-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
40 lines (39 loc) · 771 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
width: 100%;
background-color: #e2e2e2;
}
.watch-container{
width: 100%;
min-height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.watch-container p{
padding: 5px;
letter-spacing: 1px;
font-size: 40px;
transform: scale(1.5);
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
background-color: #fff;
}
.watch-container p span{
box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}
.project-heading{
margin-bottom: 80px;
}
.project-heading h1{
text-transform: capitalize;
font-size: 30px;
}
small{
color: #b8b8b8;
}