-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_reportpage.css
61 lines (57 loc) · 1.15 KB
/
style_reportpage.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
body{
background-image: url(https://images.alphacoders.com/602/602859.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
form{
font-family: Arial, Helvetica, sans-serif;
border-radius: 25px;
background-color: rgba(255,255,255,0.9);
margin-left: auto;
margin-right: auto;
width: 600px;
}
form h1{
font-weight: 600;
text-align: center;
text-decoration: underline;
}
form h3{
text-indent:20px;
}
form textarea{
padding: 5px 15px;
border : 1px solid #090909;
border-radius: 3px;
background: rgb(221, 211, 211);
font-size:15px;
font-family: Arial, Helvetica, sans-serif;
width:90%;
margin: 4px 0;
}
.button{
background-color: #4CAF50;
margin-top: 5px;
border: none;
border-radius: 8px;
padding: 20px 32px;
width: 100%;
font-size: 25px;
font-weight : 800;
cursor: pointer;
transition-duration: 0.2s;
}
.button:hover{
background-color: lightgreen;
color: black;
}
.button2{
font-size: 20px;
cursor: pointer;
transition-duration: 0.2s;
}
.button2:hover{
background-color: grey;
color: white;
}