-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyl.css
49 lines (41 loc) · 819 Bytes
/
styl.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
body{
margin: 0;
color: rgb(51,51,51);
background-color: rgb(51,51,51);
overflow: hidden;
}
.desc{
color: f8f8f8;
width: auto;
height: auto;
font-size: 24px;
font-weight: 600;
text-align: center;
padding: 60px;
margin: 100px;
border-radius: 20%;
border-bottom: 1px solid;
border-top: 1px solid;
}
.footr{
width: 100%;
background-color: f8f8f8;
padding: 10px;
font-weight: 500;
font-size: 15px;
}
.contnt{
display: flex;
justify-content: space-around;
flex-direction: row-reverse;
}
@media (max-width: 1000px) {
.contnt {
flex-direction: column;
}
.desc{
margin-left: 10%;
width: 80%;
border-radius: 50%;
}
}