-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (114 loc) · 2.03 KB
/
styles.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #525659;
font-family: 'Frank Ruhl Libre', serif;
}
.main-container{
width: 80%;
margin: 0 auto;
background-color: white;
padding: 0 10%;
}
.flexible{
display: flex;
}
.top-container{
padding-top: 30px;
}
.top-container div{
width: 46%;
margin: 5% 10% 0 0;
}
.top-container img{
width: 44%;
}
.top-container h1{
font-size: 50px;
border-left: orangered solid 2px;
padding: 0 10px;
}
p{
padding: 20px 0;
font-size: 14px;
letter-spacing: 1px;
color: rgb(73, 70, 70);
font-family: 'Poppins', sans-serif;
}
h1 span{
color: #FFAD5A;
}
button{
padding: 10px 50px;
background-color: #FF5959;
border: none;
border-radius: 5px;
color:white;
}
.my-mission-container h1{
text-align: center;
font-size: 35px;
font-family: 'Roboto Condensed', sans-serif;
padding: 60px 0 30px 0;
}
.my-mission-container img{
width: 50%;
}
.box{
width: 30%;
height: 270px;
padding: 2%;
font-family: 'Roboto Condensed', sans-serif;
box-shadow: inset rgb(124, 121, 121) -5px -5px 10px 2px ,rgb(88, 85, 85) -5px -5px 10px 1px ; border-radius: 15px;
}
.mission{
background-color: #EDF5F6;
}
.vision{
background-color: #FBEAEA;
margin:0 7%;
}
.goals{
background-color: #FFF4D6;
}
.coding-container{
margin: 50px 0;
}
.coding-container img{
width: 40%;
margin-right: 7%;
}
.text-container{
height: 80%;
margin: auto 0;
font-family: 'Roboto Condensed', sans-serif;
font-size: 30px;
}
.about-community img{
width: 40%;
margin-left: 7%;
}
.my-choice{
padding-bottom: 7%;
}
.my-choice img{
width: 50%;
margin-top: 50px;
margin-right: 7%;
border-radius: 10%;
}
.my-choice .text-container span{
color: #FFAD5A;
}
footer{
background-color: #0B0D17;
height: 100px;
font-size: 18px;
font-family: 'Lobster Two', cursive; text-align: center;
color: white;
line-height: 20px;
padding: 20px 0;
}