-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
85 lines (81 loc) · 1.8 KB
/
style2.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
*{
margin: 0;
padding: 0;
}
.main-container{
padding-top: 100px;
}
.main-container .title{
background:#555;
padding: 25px;
text-align: center;
font-size: 20px;
color: #fff;
font-family: "Poppins",sans-serif;
font-weight: 600;
letter-spacing: 2px;
}
/* about section */
.about{
font-size: 20px;
font-family: "Poppins",sans-serif;
background: azure;
text-align: center;
font-weight: bolder;
padding: 15px 0;
position: relative;
}
.content{
padding: 5px 25px;
letter-spacing: 1.3px;
font-size: 15px;
line-height: 1.3;
margin-bottom: 10px;
font-family:" Ubuntu",sans-serif;
background:#555;
color: #fff;
font-weight: 600;
margin: 0 35px;
border-radius: 18px;
padding: 25px 25px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.tech-used{
text-align: center;
padding: 10px 0;
font-family: " Poppins",sans-serif;
font-weight: 600;
background: azure;
font-size: 18px;
}
.click-on-button{
text-align: center;
background: azure;
font-weight: bolder;
}
.button{
text-align: center;
display: flex;
justify-content: center;
text-align: center;
margin-top: 20px;
cursor: pointer;
}
.btn{
padding: 10px 25px;
background:black;
border-radius: 5px;
transition: all 0.7s ease;
box-shadow: 0px 0px 11px 0px rgb(221, 221, 221,0.75);
-webkit-box-shadow:0px 0px 11px 0px rgb(221, 221, 221,0.75);
-moz-box-shadow:0px 0px 11px 0px rgb(221, 221, 221,0.75);
}
.btn:hover{
transform: scale(1.055);
}
body{
background: azure;
}
.btn a{
color: #fff;
}