-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylejs.css
107 lines (94 loc) · 1.77 KB
/
stylejs.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
body {
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('bg.gif');
background-position: center;
background-size: cover;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
.container {
text-align: center;
}
.container .h1 {
padding: 1em 2em;
color: whitesmoke;
font-family: sans-serif;
}
.wrapper {
display: inline;
padding: 1.4em 2em;
border-radius: 0.4em;
background: #f6fafa;
position: relative;
color: #1c1e2d;
}
.container #filebtn {
border: 0;
background: none;
font-size: 1em;
padding-left: 0.2em;
cursor: pointer;
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
}
.container .lable {
font-size: 1.5em;
}
.row {
display: flex;
flex-wrap: wrap;
padding: 5em;
}
.column {
flex: 25%;
padding: 0.1em;
}
.row .column .img {
width: 100%;
height: 100px;
border: 2px solid #000202;
}
h1{
font-size: 40px;
font-family: sans-serif;
color:white;
margin-top: -30px;
margin-bottom: 4px;
margin-left: 5px;
margin-right: 5px;
letter-spacing: 1px;
text-align: center;
padding-bottom: 6px;
}
p{
font-family: Courier New, monospace;
text-align: center;
color:white;
padding-bottom: 10px;
font-size: 30px;
margin-bottom: 10px;
font-weight: bolder;
}
.btn{
background-color: aqua;
color:rgba(3, 3, 83, 0.89);
border-radius: 19px;
width:150px;
position: relative;
margin-left: 3%;
height: 40px;
font-size: 20px;
font-weight: bolder;
margin-top:10px;
box-shadow: rgb(117, 245, 245);
}
.btn:hover{
background-color: rgba(3, 3, 83, 0.89);
color:aqua;
box-shadow: rgb(117, 245, 245);
}