-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutus.css
120 lines (117 loc) · 2.1 KB
/
aboutus.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
body{
margin: 0;
padding: 0;
background-color: darkgrey;
}
.container{
width:100%;
height:auto;
display: flex;
align-items: flex-start;
flex-wrap: wrap;
}
.about{
width:100%;
height: 600px;
background-image: url(https://i.ibb.co/9bZPZgp/dsc4641-copy-880074f1fd6d9422f6c3fded126a54c8.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.text{
font-size: 30px;
color:#fff;
font-family: sans-serif;
text-shadow: 0px 15px 12px #000;
}
.line{
width:200px;
height: 8px;
background-color: #17ff8d;
display: block;
position: relative;
border-radius: 5px;
left:10%;
box-shadow: 0px 15px 12px 0px #000;
}
.content{
width:100%;
height:auto;
background-color:darkgray;
font-size: 23px;
font-family: audiowide;
color:#333;
line-height: 30px;
text-align: center;
padding-right: 15px;
padding-left: 15px;
}
b{
font-size: 50px;
color:#000;
font-weight: 500px;
}
footer{
width:100%;
height: auto;
background-color: #333;
color: #17ff8d;
font-size: 23px;
text-align: center;
line-height: 50px;
}
.cards{
width: 23%;
background-color: gray;
border-radius: 5px;
margin-left: 102px;
display: inline-block;
/*margin-right: 100px;*/
}
.cards:hover{
box-shadow: 2px 2px 10px black;
}
.image img{
width: 100%;
border-radius: 5px;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
.title{
text-align: center;
font-family: 'Sacramento',cursive;
}
.description{
text-align: center;
font-size: 22px;
}
a{
text-decoration: none;
}
button{
margin-top: 30px;
margin-bottom: 30px;
background-color: white;
border: 1px solid black;
padding: 5px;
}
button:hover{
background-color: black;
color: white;
transition: 0.5s;
cursor: pointer;
}
.main{
background-color: darkgrey;
margin-bottom: 15px;
}
i{
margin: 10px;
}
i:hover{
cursor: pointer;
}