-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFirstPage.css
More file actions
75 lines (71 loc) · 1.43 KB
/
FirstPage.css
File metadata and controls
75 lines (71 loc) · 1.43 KB
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
*{
font-family: Arial, sans-serif;
}
#Bigcontainer{
display: flex;
}
.container{
padding: 9% 0;
width: 50%;
}
.container > .small-container{
display: block;
margin: auto;
width: 50%;
padding: 15px
}
#Bigcontainer .container > #inside-container{
color: blue;
}
.container > #inside-container .smalll-container{
display: block;
margin: auto;
border: 1px solid blue;
width: 45%;
padding: 25px;
}
.container > #inside-container .smalll-container p:nth-child(1){
font-size: small;
margin-bottom: -10px;
}
.container > #inside-container .smalll-container{
cursor: pointer;
font-weight: 300;
}
.container > .small-container p:last-child{
font-size: large;
}
.container :nth-child(2) :hover{
background-color: blue;
color: white;
}
.smalll-container span{
/* border: 1px solid blue; */
padding: 2px;
font-size: small;
background-color: rgba(33, 98, 220, 0.806);
color: aliceblue;
}
/* last*/
.Verysmalll-container {
margin-left: -10px ;
font-weight: 700;
cursor: pointer;
color: blue;
}
#container img{
width: 100%;
height: 100vh;
}
@media screen and (max-width : 1250px) {
.container{
display: block;
margin :auto;
width: 80%;
font-size: larger;
}
#container{
width: 0%;
height: 0%;
}
}