-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutstyle.css
120 lines (120 loc) · 2.17 KB
/
aboutstyle.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
109
110
111
112
113
114
115
116
117
118
119
120
@import url('https://fonts.googleapis.com/css?family=Roboto:700&display=swap');
*{
padding: 0;
margin: 0;
}
.wrapper{
background: url(pexels-suzy-hazelwood-2382325.jpg) no-repeat;
background-size: cover;
height: 100vh;
margin: 0;
padding: 0;
}
.navbar{
position: fixed;
height: 80px;
width: 100%;
top: 0;
left: 0;
background:#008ECC;
}
.navbar .logo{
width: 100px;
height: 55px;
padding: 15px 100px;
margin-left: 840px ;
}
.navbar ul{
float: left;
margin-right: 20px;
}
.navbar ul li{
list-style: none;
margin: 0 8px;
display: inline-block;
line-height: 80px;
}
.navbar ul li a{
font-size: 20px;
font-family: sans-serif;
color: white;
padding: 6px 13px;
text-decoration: none;
transition: .4s;
}
.navbar ul li a.active,
.navbar ul li a:hover{
background: #033f57;
border-radius: 2px;
}
.wrapper .center{
position: absolute;
left: 50%;
top: 55%;
transform: translate(-50%, -50%);
font-family: sans-serif;
user-select: none;
}
.center h1{
color: white;
font-size: 60px;
text-transform: uppercase;
width: 900px;
font-weight: bold;
text-align: center;
}
.center .buttons{
margin: 35px 280px;
}
.buttons button{
height: 50px;
width: 150px;
font-size: 18px;
font-weight: 600;
color: white;
background: #033f57;
outline: none;
cursor: pointer;
border: 1px solid #033f57;
border-radius: 25px;
transition: .4s;
}
.buttons .btn2{
margin-left: 25px;
}
.buttons button:hover{
background: #43575e;
}
.container{
background: #7f98a1;
height: 65vh;
width: 75%;
position: absolute;
font-family:"Comic Sans MS", cursive, sans-serif;
top: 50%;
left: 50%;
transform: translate(-50%,-40%);
}
.container h1
{
font-family:"sans-serif";
}
.img{
height: 100%;
width: 30%;
background: url("pexels-parij-borgohain-1427430.jpg")no-repeat;
background-size: cover;
background-position: center;
}
.text{
color: white;
width: 60%;
padding: 10px 10px;
position: absolute;
top: 40%;
left: 65%;
transform: translate(-50%,-50%);
text-align: center;
font-size: 20px;
text-shadow: black 1px 1px
}