-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojec1.css
84 lines (82 loc) · 1.7 KB
/
projec1.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
body{
display:flex;
background-color:whitesmoke;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url("https://wallpapercave.com/wp/wp2581365.jpg");
background-size: cover;
}
.details-input{
background-color:rgb(179, 211, 211);
font-size:larger;
padding:20px;
border-radius: 10px;
width: 500px;
border: 1px solid black;
}
.button1{
width:300px;
background-color:blue;
display: inline-block;
margin: 0 20px;
padding:10px;
align-self: center;
}
.button1:hover{
background-color: cornsilk;
transition: ease-in-out 2ms;
}
h1{
text-transform: uppercase;
font-size: 50px;
font-weight: bold;
text-decoration: underline;
color:whitesmoke;
transition-property: unset;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h2{
text-transform: uppercase;
font-size: 50px;
font-weight: bold;
text-decoration: underline;
color:white;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h1:hover{
color: black;
}
h2:hover{
color: black;
}
.table-c{
box-sizing: content-box;
display: flex;
direction: column;
border: 5px solid black;
min-height: 20vh;
width: 100%;
}
.heading{
font-size: 30px;
border-bottom: 3px solid black;
border-right: 3px solid black ;
}
.heading:last-child{
border-right: none;
}
.row{
border-right: 3px solid black ;
}
.row:last-child{
border-right: none;
}
.video{
border:5px solid grey;
width:900px;
}
.image1{
width:600px;
height:400px;
}