-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (77 loc) · 1.48 KB
/
style.css
File metadata and controls
85 lines (77 loc) · 1.48 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
76
77
78
79
80
81
82
83
84
85
body {
background: url("images/background.jpg") no-repeat;
background-size: cover;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
line-height: 20px;
}
h1 {
text-align: center;
width: auto;
background-color: #a8a8a8;
color: #fff;
margin-bottom: 50px;
}
table {
border: 1px solid black;
text-align: center;
padding: 3px;
}
.container {
width: 600px;
margin: 0 auto;
}
.creation {
background-color: #a8a8a8;
opacity: 0.9;
border: none;
border-radius: 10px;
padding: 10px;
margin: 12% auto;
width: 600px;
height: 400px;
box-shadow: 0 0 10px #000;
}
.form-group {
text-align: center;
margin-bottom: 10px;
}
.btnPage {
position: fixed;
top: 12px;
right: 12px;
background-color: #a8a8a8;
border-radius: 10px;
border: none;
color: white;
padding: 10px;
cursor: pointer;
font-size: 18px;
}
.title {
text-align: center;
margin-bottom: 10px;
background-color: #a8a8a8;
opacity: 0.8;
font-weight: bold;
font-size: 20px;
border: none;
border-radius: 10px;
padding: 10px;
box-shadow: 0 0 10px #000;
}
.validationform{
background-color: #a8a8a8;
opacity: 0.8;
font-weight: bold;
border: none;
border-radius: 10px;
box-shadow: 0 0 10px #000;
color: white;
cursor: pointer;
font-size: 18px;
position: absolute;
top: 50%; left: 50%;
padding: 15px;
transform: translate(-50%, -50%);
}