-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
105 lines (84 loc) · 1.66 KB
/
style2.css
File metadata and controls
105 lines (84 loc) · 1.66 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
*
{
box-sizing: content-box;
margin:0;
padding: 0;
}
body{
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-image: url('img/blueprin1280.jpg');
background-attachment: fixed;
background-position: center;
background-size: cover;
}
p{
margin:20px;
}
.wrapper
{
background-image: url('img/blueprin1280.jpg');
background-color: rgba(0,0,0,0.8);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 3px solid orangered;
margin-top: 50px;
height: 500px;
width: 400px;
border-radius: 10px;
position: absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
color:white;
font-weight: bold;
font-size: 16px;
}
input{
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
height:50px;
width: 150px;
background-color: aliceblue;
padding: 10px;
background-image: url('img/blueprin1280.jpg');
left:50%;
border-radius: 10px;
margin:30px;
color:white;
font-weight: bold;
}
.btncount
{
width: 200px;
height: 100px;
border-radius: 10px;
color:black;
border:2px solid black;
left:50%;
padding: 5px;
margin:20px;
font-weight: bold;
transition: 0.7s;
}
.btncount:hover
{
background-image: url('img/blueprin1280.jpg');
color:white;
font-weight: bold;
}
.results
{
height:200px;
width: 150px;
margin-left:60px;
color:white;
font-size: 15px;
font-weight: bold;
display: flex;
flex-direction: row;
justify-content: center;
}