-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylereview.css
124 lines (102 loc) · 2.1 KB
/
stylereview.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
121
122
123
124
*{
padding: 0;
margin: 0;
font-family: 'Josefin Sans' , sans-serif;
box-sizing: border-box;
}
.intro{
background-image: url(background%20image%201.jpg);
height: 120px;
width:auto;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 45px;
padding-left: 8%;
padding-right: 8%;
}
.logo{
color:white;
font: Sans-Serif;
font-size: 40px;
font-weight: 200;
letter-spacing: 1px;
cursor: pointer;
font-weight: bold;
position: relative;
}
span{
color:#fc7c57;
}
nav ul li{
list-style-type: none;
display: inline-block;
padding: 10px 25px;
}
nav ul li a{
color: white;
text-decoration: none;
font-weight: bold;
text-transform: capitalize;
}
nav ul li a:hover{
color: #fc7c57
;
transition: .4s ease;
font-weight: bolder;
font-size: 23px;
}
.btn1{
transition-duration: 0.3s;
background-color: #fc7c57;
text-decoration-color: white;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 18px;
cursor:pointer;
}
.btn1 span{
cursor: pointer;
display: inline-block;
position: relative;
}
.btn1:hover{
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.btn1:hover span{
opacity: 1;
right: 0;
}
.btn2{
transition-duration: 0.3s;
background-color: #fc7c57;
text-decoration-color: white;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 18px;
cursor:pointer;
}
.btn2 span{
cursor: pointer;
display: inline-block;
position: relative;
}
.btn2:hover{
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.btn2:hover span{
opacity: 1;
right: 0;
}