-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (107 loc) · 1.6 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
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
/* MOBILE FIRST */
nav {
background-color: #FFF;
padding: 16px 8px;
display: flex;
justify-content: space-evenly;
}
#one{
display:flex;
}
#two{
width: 20;
height: 8px;
}
#three {
display: none;
}
#four {
display: none;
}
#harmburger {
font-size: 22px;
}
section{
align-items: center;
text-align: center;
justify-content: center;
}
button{
background-color: rgba(0, 68, 255, 0.822);
border:0cm;
font-size: 12px;
color:#fff;
height:40px;
border-radius: 12px;
}
/* tablets */
@media only screen and (min-width: 600px) {
body {
background-color: #fff;
}
}
/* laptop */
@media only screen and (min-width: 1024px) {
#parent{
display:flex;
justify-content:space-evenly;
align-items: center;
}
#harmburger {
display: none;
}
h3{
display:none;
}
#one{
margin-top: -30px;
}
nav{
display:flex;
justify-content: space-evenly;
}
#three{
justify-content: space-evenly;
display:inline-flex;
padding-inline: 15px;
margin-top: 20px;
}
li{
list-style: none;
display: inline-block;
padding-left: 100px;
}
a{
text-decoration:solid;
font-size: 20px;
color: rgba(0, 68, 255, 0.822);
flex-wrap: wrap;
}
#four{
display: inline-flex;
justify-content: space-between;
margin-left:40px ;
}
nav button{
background-color: rgba(0, 68, 255, 0.822);
font-size: 16px;
color:#fff;
width:55px;
border-radius: 12px;
margin-top: 25px;
}
section{
display: flex;
}
#text{
justify-content: left;
font-size:20px;
padding: 100px;
}
#img2{
padding: 150px;
}
image{
width:300
};
}