-
Notifications
You must be signed in to change notification settings - Fork 0
/
card.css
110 lines (88 loc) · 1.57 KB
/
card.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
body{
font-family: Arial,sans-serif;
margin: 0;
padding: 0;
}
nav {
height: 80px;
background: linear-gradient(89.81deg, #9845e8 -1.72%, #33d2ff 54.05%, #dd5789 99.78%);
display: flex;
align-items: center;
justify-content: space-between;
}
.logoph {
margin-left: 70px;
object-fit: cover;
width: 70px;
}
.logo {
font-size: 30px;
color: #D3AD6C;
padding: 0px 75px 0px 0px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin: 0px 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
font-weight: 450;
letter-spacing: 0.8px;
padding: 10px 20px;
border-radius: 5px;
transition: all 0.3s ease;
text-align: center;
}
nav ul li a:hover {
color: #1b1b1b;
background-color: #8FA582;
}
nav ul li button {
color: black;
text-decoration: none;
font-size: 15px;
font-weight: 500px;
letter-spacing: 1px;
padding: 8px 15px;
border-radius: 50px;
transition: all 0.3s ease;
background-color: #104A80;
align-items: center;
}
nav ul li button:hover {
color: #1b1b1b;
}
h2{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 35px;
margin: 20px 00 20px 150px;
}
h1{
font-size: 25px;
font-family: Arial, Helvetica, sans-serif;
}
.container {
width: 100%;
height: auto;
display: flex;
justify-content: center;
gap: 0.5rem;
}
.box{
width: 18rem;
height: 25rem;
}
container box h1{
font-size: 100px;
}
#image{
width: 100%;
height: 100%;
object-fit: cover;
}