-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojectIdeas.css
More file actions
75 lines (75 loc) · 1.86 KB
/
Copy pathprojectIdeas.css
File metadata and controls
75 lines (75 loc) · 1.86 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
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: #f3f7fa;
color: #253052;
}
header {
background: #2277ee;
color: #fff;
text-align: center;
padding: 36px 16px 22px 16px;
border-radius: 0 0 14px 14px;
margin-bottom: 30px;
}
header h1 {
font-size: 2rem;
margin: 0 0 10px 0;
font-weight: 700;
}
header p {
margin: 0;
font-size: 1.09rem;
opacity: 0.93;
}
.projectsSection {
max-width: 900px;
margin: 35px auto 0 auto;
background: #eaf1ff;
padding: 32px 20px 24px 20px;
border-radius: 16px;
box-shadow: 0 2px 18px #2277ee20;
}
.projectsSection h2 {
color: #2277ee;
font-size: 1.45rem;
margin: 0 0 16px 0;
font-weight: 700;
}
.projectsIntro {
font-size: 1.08rem;
color: #384a6a;
}
.projectsDetails {
background: #fff;
border-left: 5px solid #67a3ff;
border-radius: 8px;
box-shadow: 0 1px 8px #2277ee13;
padding: 15px 20px;
color: #253052;
margin: 18px 0;
font-size: 0.99rem;
}
.projectsBtn {
display: inline-block;
margin: 12px 0 0 0;
background: #2277ee;
color: #fff;
border: none;
padding: 11px 27px;
font-size: 1.09rem;
font-family: 'Poppins', sans-serif;
border-radius: 7px;
box-shadow: 0 2px 12px #2277ee30;
cursor: pointer;
transition: background .14s;
}
.projectsBtn:hover {
background: #184c9e;
}
@media (max-width:700px) {
header h1 { font-size: 1.32rem; }
.projectsSection { padding: 19px 5px 16px 5px; }
.projectsSection h2 { font-size: 1.13rem; }
.projectsBtn { padding: 8px 15px; font-size: 0.97rem;}
}