-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathava.css
106 lines (97 loc) · 1.89 KB
/
ava.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
body{
margin:0;
padding:0;
font-family:sans-serif;
background-image:url('moscow-wallpaper-154.jpg');
/*background-repeat: no-repeat;*/
background-size: 50% 100%;
height: 100vh;
}
.center,.content{
position: absolute;
top: 65%;
left: 50%;
transform:translate(-50%,-50%);
}
.content{
visibility: visible;
width: 500px;
height:300px;
background-color:white;
border-radius:3px;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.4);
}
.header{
height:48px;
background: #151B54;
text-align: center;
border-radius:3px 3px 0 0;
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
}
.header h2{
color:white;
padding-left:32px;
font-weight: normal;
}
img{
height:100px;
width:100px;
margin-left:200px;
}
p{
padding-top:10px;
font-size:20px;
color:white;
text-align:center;
background-color: #151B54;
}
.navbar {
max-width: 100%;
height: 60px;
background-color: #151B54;
display:flex;
justify-content: space-between;
}
.navbar .navbar__logo h1 {
color: #ffffff;
font-size: 30px;
margin:14px;
}
.navbar .navbar__nav {
display: flex;
align-items: center;
}
.navbar .navbar__nav .navbar__menu {
list-style: none;
display: flex;
}
.navbar .navbar__nav .navbar__menu .navbar__item {
margin-right: 20px;
}
.navbar .navbar__nav .navbar__menu .navbar__item .navbar__link {
text-decoration: none;
color: white;
}
.navbar .navbar__nav .navbar__menu .navbar__item .navbar__link:hover {
color:#000;
}
.navbar .navbar__buttons {
display: flex;
align-items: center;
}
.navbar .navbar__buttons .btn {
margin-right: 20px;
background-color: #2691d9;
color: #ffffff;
border: none;
font-family: "Poppins";
padding: 10px 0;
font-size: 15px;
border-radius: 15px;
min-width: 85px;
max-width: 90px;
}
.navbar .navbar__buttons .btn:hover {
filter: opacity(0.9);
cursor: pointer;
}