-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (105 loc) · 1.65 KB
/
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
*,
*::before,
*::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.wrapper{
text-align: center;
font-size: 1rem;
background: #fff;
font-family: arial, sans-serif;
color: rgb(0,0,0,0.80);
display: flex;
min-height: 100vh;
min-width: 100vw;
flex-direction: column;
justify-content: space-between
}
img{
max-width: 100%;
height: auto;
}
/*---navbar----*/
nav ul{
display: flex;
justify-content: flex-end;
padding: 1rem;
list-style: none;
align-items: center;
font-size: .9rem;
}
nav li{
margin-right:1rem;
}
a{
text-decoration: none;
color: rgb(0,0,0,0.70);
}
a:hover,
a:focus{
color: #696969;
text-decoration: underline;
}
.btn{
padding:0.45rem 0.7rem;
color: #fff;
font-weight: bold;
letter-spacing: 0.1em;
background: linear-gradient(#4683ea, #4387fd);
border:#4285f4;
border-radius: 0.1rem;
}
.fa:hover,
.fa:focus{
color: #000;
}
/*-----main-----*/
.main{
padding: 8rem;
display: flex;
flex-direction: column;
align-items: center;
}
.frm{
padding: 0.2rem;
}
.frm input{
margin: 1.4rem 1rem;
height: 1.8rem;
width: 35rem;
border-radius: 2rem;
border: 1px solid #eee9e9;
font:small;
padding: 1.5rem;
}
.frm input:hover,
.from input:focus{
box-shadow: 0.5px 0.5px 3px rgb(0,0,0,.2);
}
.frm_btn{
margin: 0.8rem 0.3rem;
padding:0.5rem 1rem;
border: 1px solid transparent;
color: rgb(0,0,0,0.50);
font-size:0.9rem;
border-radius: 5px;
}
.frm_btn:hover{
border: 1px solid #cdc9c9;
color:rgba(0,0,0,0.8);
cursor: pointer;
}
/*----footer----*/
.base{
padding: 1rem;
display: flex;
flex-flow: row;
justify-content: space-between;
font-size:.8rem;
background: rgb(244,244,244);
}
.base a{
margin: 0 0.8rem;
}