-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (72 loc) · 1.22 KB
/
style.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
*{
text-decoration: none !important;
}
footer{
width: 100%;
height: 65vh;
background-color: #333;
display: inline-flex;
flex-direction: column;
align-items: center;
}
main{
width: 100%;
height: 35vh;
background-color: aqua;
}
.footer_div1{
width: 95%;
height: 50vh;
background-color: aquamarine;
}
.footer_div2{
width: 95%;
height: 15vh;
background-color: blueviolet;
}
#ul1{
list-style: none;
}
#ul1>li{
display: inline-flex;
margin-right: 20px;
width: 50px;
height: 50px;
background-color: gray;
border-radius: 10px;
display: inline-flex;
justify-content: center;
align-items: center;
}
#ul1>li>a{
color: white;
}
#btn1{
width: 250px;
height: 45px;
border-radius: 5px;
background: none;
border: 2px dashed hsla(0, 0%, 85%, .2);
color: white;
}
.accordion{
width: 100%;
height: 25vh;
background-color: green;
}
@media screen and (max-width: 992px) {
.div2,.div3,.div4{
display: none;
}
.divyellow{
order: 2 ;
}
.divred{
justify-content: flex-start !important;
}
}
@media screen and (min-width: 992px) {
.accordion{
display: none;
}
}