forked from Its-Aman-Yadav/Community-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ourprogram.css
130 lines (111 loc) · 2.17 KB
/
ourprogram.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
header {
background: linear-gradient( rgb(255, 128, 1), rgb(255, 206, 10));
color: #fff;
padding: 20px 0;
height:350px;
align-items: center;
display: flex;
text-align: center;
}
header h1 {
top:30%;
margin-bottom: 15px;
font-size: 30px;
font-weight: 700;
color:white;
text-align: center;
}
.container {
width: 80%;
margin: 0 auto;
max-width: 1200px;
}
.borderbox{
border-width: 3px;
border-radius: 10px;
border-style: inset;
margin-top: 30px;
border-color: rgb(255, 206, 10);
margin-left: auto;
margin-right:auto;
width: 80% !important;
}
.mission,
.join-us {
padding: 20px 0;
text-align: center;
}
.mission{
background: none;
}
.join-us{
background: linear-gradient( white, rgb(247, 210, 62));
margin-top: 30px;
}
.grids{
width: 70%;
display: grid;
grid-auto-flow: column;
gap: 20px;
justify-content: space-between;
margin-bottom: 20px;
}
.grids img{
max-height: 200px;
max-width: 200px;
border-radius: 200px;
border-width: 3px;
box-shadow: 0 2px 2px 2px rgb(153, 148, 142);
border-color: white;
}
.mission h2,
.join-us h2 {
color: #323232;
font-size: 30px;
font-weight: 600;
}
.mission p,
.join-us p {
margin-top:0px;
}
.join-us .btn {
display: inline-block;
padding: 10px 20px;
background: linear-gradient(90deg, #ff9c3e, #ffa806);
color: #fff;
width: 200px;
height: 50px;
letter-spacing: 2px;
font-weight: 600;
text-decoration: none;
border-radius: 5px;
border-width: 3px;
border-color: rgb(255, 132, 0);
margin-top: 10px;
font-size: 18px;
transition: background-color 0.3s ease;
}
.join-us .btn:hover {
background: none;
border-width: 3px;
border-color:rgb(255, 128, 1);
color: rgb(255, 128, 1);
}
.changes{
color: rgb(39, 38, 36);
font-size: 16px;
}
.left-sec{
text-align: left;
padding-right: 300px;
}