-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfirence.css
89 lines (89 loc) · 1.56 KB
/
confirence.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
*{
margin: 0px;
padding: 0px;
font-family: Poppins, sans-serif;
}
.logo{
color: aqua;
font-size: 26px;
font-weight: 500;
float: left;
padding: 25px;
}
nav{
background-color: rgba(6,6,6,0.8);
width: 100%;
height: 80px;
box-shadow: 0 0 5px 0;
}
.main{
float: right;
padding: 20px;
margin: 5px;
}
ul li{
display: inline-block;
}
ul li a{
text-decoration: none;
color: #fff;
padding: 25px;
margin: 5px;
font-size: 14px;
font-weight: 500;
}
.background{
background-image: url(confirence.jpg);
background-attachment: fixed;
background-size: cover;
background-position: center;
}
.content{
font-size: 30px;
font-weight: 700;
color: #fff;
padding: 25px;
margin: 5px;
}
.paragraph{
font-size: 15px;
margin: 6px;
font-weight: 700;
}
span{
color: crimson;
}
ul li a:hover{
color: yellow;
transition: 0.6s;
}
.btn .color1{
font-size: 16px;
font-weight: 500;
text-decoration: none;
padding: 20px 60px;
background-color: orange;
border-radius: 50px;
color: #fff;
}
.btn .color2{
font-size: 16px;
font-weight: 500;
text-decoration: none;
padding: 20px 60px;
background-color: darkgreen;
border-radius: 50px;
color: #fff;
margin: 10px;
}
.btn .color1:hover{
background-color: crimson;
transition: 0.9s;
}
.btn .color2:hover{
background-color: aqua;
transition: 0.9s;
}
.btn{
margin-top: 25px;
}