forked from anupam603/Webapp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
testimonial.css
100 lines (84 loc) · 1.43 KB
/
testimonial.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
html {
scroll-behavior: smooth;
}
body {
background-color: #1f2235;
font-family: "Baloo Tamma 2", cursive;
}
.m-heading {
font-family: "Roboto Slab", serif;
}
.navigation-link {
border: 2px solid transparent;
}
.navigation-link:hover {
text-decoration: none;
border-bottom: 2px solid #f5ba09;
transition: 0.5s ease;
}
.main-container {
min-height: 100vh;
padding-top: 5rem;
}
.article
{
margin: 1.25rem 1.25rem;
}
.card
{
margin-top: 10px;
}
header {
margin-bottom: 15px;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 40px;
padding-left: 10%;
padding-right: 10%;
}
.logo {
color: white;
font-size: 28px;
}
span {
color: #ea1538;
}
nav ul li {
list-style-type: none;
display: inline-block;
padding: 10px 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
color: #ea1538;
transition: .3s;
}
nav button {
border: none;
background: #ea1538;
padding: 12px 30px;
border-radius: 30px;
color: white;
font-weight: bold;
font-size: 15px;
transition: .4s;
}
nav button a{
color: white;
text-decoration: none;
}
nav button a:hover{
transition: scale(1.3);
color: white;
}
nav button:hover {
transform: scale(1.3);
cursor: pointer;
}