-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_project.css
126 lines (112 loc) · 1.89 KB
/
new_project.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
121
122
123
124
125
126
*{
margin: 0%;
border: 0%;
padding: 0%;
}
img{
font-size: small;
box-sizing: border-box;
text-align: start;
border-radius: 8em;
cursor: pointer;
}
#a{
width:100%;
background-color: rgb(2, 152, 216);
display: inline-block;
}
#a1{
width: 50%;
align-items: center;
display:flex;
}
ul{
list-style-type: none;
}
input{
border-radius: 7px;
font-size: 15px;
display: block;
}
button{
border-radius: 7px;
font-size: 13px;
display: block;
}
a{
color: azure;
font-family:sans-serif;
border-radius: 5em;
background-color:rgb(10, 186, 239);
text-decoration: none;
display: inline-block;
padding: 1em;
margin: 0em 5em;
}
a:hover{
color: white;
background-color: rgb(23, 22, 22);
text-transform: uppercase;
}
a:active{
color: black;
background-color: rgb(241, 241, 241) ;
font-size: 15px;
}
span{
cursor: pointer;
font-size: 30px;
margin: 0 20px;
justify-content: right;
display: none;
}
span:hover{
color: white;
}
span:active{
font-size: 20px;
}
@media only screen and (max-width:1000px) {
span{
float: right;
display: block;
}
#a1 {
align-items: center;
flex-direction: column;
display:block ;
}
img{
float:left;
display: block;
}
button{
display: none;
}
input{
display: none;
}
}
#b{
clear: both;
display: table;
opacity: 0.6;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-image: url(/2022_javascript/austin-poon-JO_S6ewBqAk-unsplash.jpg);
width: 100%;
height: 50em;
margin: 0em ;
}
.b1{
margin: auto;
padding-left:auto;
width: 70%;
height: 100%;
background-color:red;
}
#b.b1 span{
font-size: 10em;
color: black;
}