-
Notifications
You must be signed in to change notification settings - Fork 0
/
form-Style.css
91 lines (89 loc) · 1.73 KB
/
form-Style.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
85
86
87
88
89
90
91
*{
box-sizing: border-box;
}
body{
margin-left:15%;
margin-right:15%;
padding: 15px;
background-color: midnightblue;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 14px;
}
@media screen and (max-width:600px) {
body{
margin-left: 0%;
margin-right: 0%;
}
}
.Personal{
border: 1px solid rgb(190, 190, 190);
border-radius: 5px;
padding-left: 10px;
padding-right: 10px;
padding-top: -30px;
}
.Academic{
border: 1px solid rgb(190, 190, 190);
margin-top: 10px;
margin-bottom: 10px;
border-radius: 5px;
padding-left: 10px;
padding-right: 10px;
padding-top: -30px;
}
.Header{
text-align: center;
}
.container{
background-color: aliceblue;
padding: 15px;
border: 2px solid black;
border-radius: 5px;
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="email"],
select, textarea{
width: 100%;
padding: 10px;
border: 1px solid rgb(184, 184, 184);
border-radius: 5px;
margin-top: 5px;
margin-bottom: 15px;
}
fieldset{
background-color: white;
border: 1px solid rgb(184, 184, 184);
border-radius: 5px;
margin-top: 5px;
}
.btns{
display: flex;
}
.btnSub{
background-color: darkorange;
color: white;
border: none;
border-radius: 5px;
padding: 15px;
width: 50%;
margin: 5px;
}
.btnRes{
background-color: darkorange;
color: white;
border: none;
border-radius: 5px;
padding: 15px;
width: 50%;
margin: 5px;
}
h1{
color: darkblue;
}
.btnSub:hover, .btnRes:hover{
background-color: crimson;
cursor: pointer;
}