-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.css
More file actions
127 lines (111 loc) · 2.1 KB
/
Copy pathproject.css
File metadata and controls
127 lines (111 loc) · 2.1 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
*{
font-family: "Roboto", sans-serif;;
box-sizing: border-box;
margin: 0;
border: 0;
}
.outer {
height: 100px;
background-color: rgb(7, 34, 68);
margin: 0 auto;
/* padding: 5px; */
display: flex;
align-items: center;
justify-content: center;
}
.inner {
background-color: white;
/* padding: 5px 20px; */
border: 2px solid red;
text-align: center;
/* margin: 0 auto; */
width: 30%;
}
#all{
width: 80%;
}
.form{
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
}
select{
margin-right: 30px;
border: 1px solid black;
border-radius: 4px;
}
select:hover{
cursor: pointer;
}
.box2{
text-align: center;
margin-left: 160px;
}
#email{
border: 1px solid black;
border-radius: 4px;
}
#btn{
border-radius: 4px;
background-color: black;
color: white;
}
#btn:hover{
cursor: pointer;
}
.line {
border-bottom: 2px solid black;
margin-top: 12px;
width: 100%;
}
.line1 {
border-bottom: 1px solid black;
/* margin-top: 12px; */
width: 100%;
}
.card {
display: flex;
align-items: center;
padding: 20px;
/* flex-direction: row; */
/* border: 1px solid #ddd; */
/* border-radius: 5px; */
margin-bottom: 20px;
/* display: block; */
/* box-shadow: 0px 4px 8px rgba(0,0,0,0.2); */
}
.card img {
width: auto;
height: 100px;
margin-right: 20px;
/* border: 1px solid black; */
/* border-radius: 5px; */
}
.card-content {
flex: 1;
padding: 10px;
/* margin: 20px; */
}
.card-content h3,
.card-content h5 {
margin-bottom: 10px;
}
.card-content p {
font-size: 14px;
line-height: 1.5;
margin-bottom: 20px;
}
a {
background-color: rgb(236,84,40);
color: #fff;
padding: 10px 20px;
border: none;
text-decoration: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
a:hover {
background-color: #0056b3;
}