-
Notifications
You must be signed in to change notification settings - Fork 327
Expand file tree
/
Copy pathproject.css
More file actions
65 lines (53 loc) · 960 Bytes
/
project.css
File metadata and controls
65 lines (53 loc) · 960 Bytes
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
*{
margin: 0px;
padding: 0px;
/* box-sizing: border-box; */
/* font-family: 'Roboto', sans-serif; */
}
.container{
height: 100vh;
width:100vw;
background-color: aqua;
text-align: center;
margin: auto;
}
.container h1{
text-align: center;
font-size: 70px;
}
.container p{
margin-left: 10%;
text-align: left;
font-size: 20px;
}
input,textarea {
background-color: black;
color: white;
width: 80%;
font-size: 16px;
padding: 10px;
margin: 2px auto;
display: block;
border-radius: 18px;
}
select {
background-color: black;
color: white;
border: 0ch;
width: 81%;
height: 33px;
font-size: 20px;
padding: 10px;
margin: 2px auto;
display: block;
border-radius: 25px;
}
.btn{
background-color: greenyellow;
padding: 15px;
border-radius: 8px;
margin:3px auto ;
font-size: 20px;
cursor: pointer;
}
}