-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplan.css
More file actions
108 lines (98 loc) · 1.82 KB
/
plan.css
File metadata and controls
108 lines (98 loc) · 1.82 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.full-page{
height: 100%;
width: 100%;
background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(plans-background.jpg);
background-position: center;
background-size: cover;
position: absolute;
}
.navbar{
display: flex;
align-items:center;
padding: 0px;
padding-left: 0px;
padding-right: 0px;
padding-top: 0qi;
}
nav{
flex: 1;
text-align: right;
}
nav ul{
display: inline-block;
list-style: none;
}
nav ul li{
display: inline-block;
margin-right: 70px;
}
nav ul li a{
text-decoration: none;
font-size: 20px;
color: white;
font-family: "poppins";
}
nav ul li button{
font-size: 20px;
color: red;
outline: none;
border: none;
background: transparent;
cursor: pointer;
font-family: sans-serif;
}
nav ul li button:hover{
color: red;
}
nav ul li a:hover{
color: red;
}
a{
text-decoration: none;
color:red;
font-size: 28px;
}
#plans-section {
text-align: center;
padding: 50px 0;
color: cornflowerblue;
}
#plans-section h2{
font-size: 40px;
}
.plan {
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
margin: 20px;
display: inline-block;
width: 300px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: rgba(0, 0, 0, 0.7);
}
.plan h3 {
color: red;
}
.plan p {
margin: 10px 0;
color: #ddd;
}
.plan a {
display: block;
background-color: red;
color: white;
text-decoration: none;
font-size: 20px;
padding: 10px;
border-radius: 5px;
margin-top: 15px;
}
.plan a:hover {
background-color: #cc0000;
}