-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.css
71 lines (61 loc) · 959 Bytes
/
index.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
.a
{
margin: 1%;
}
a
{
width:100px;
}
*
{
margin:0px;
padding:0px;
}
input
{
border: 1px solid #f2522e;
background-color:#ededef;
}
input:hover
{
border:px solid #383959;
}
input[type=submit]
{
background-color: #f2a344;
color: black;
width: 65px;
height: 26px;
border: 1px solid gray;
border-radius: 3px;
}
#submit:hover
{
cursor: pointer;
}
body{
background-image:url(background/m.jpg);
background-position: center;
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
color: var(--text_dark);
padding: 70px;
}
#add
{
padding: 10px;
margin: auto;
width: 40%;
color: white;
background-color: #393a59;
margin-bottom: 20px;
border: 1px solid #f2522e;
}
@media screen and (max-width: 400px) {
.a
{
margin: 1%;
}
}
input {font-weight: 500;}