-
Notifications
You must be signed in to change notification settings - Fork 1
/
basic_site_1.css
130 lines (111 loc) · 2.45 KB
/
basic_site_1.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*<style>*/
/*css reset*/
body {
color: white;
margin: 0px;
padding: 0px;
background: url("img/galaxyimg.jpg");
background-repeat: no-repeat;
background-size: 100%;
/* height:850px;*/
}
.left {
color: rgb(230, 155, 127);
display: inline-block;
/* border: 2px solid red;*/
position: absolute;
left: 34px;
top: 18px;
}
.left img {
width: 115px;
border-bottom: 4px;
}
.left div {
line-height: 12px;
font-family: cursive;
text-align: center;
font-size: 14px;
padding-top: 3px;
width: auto;
}
.centre {
font-family: cursive;
display: block;
width: 40%;
margin: 20px auto;
/* border: 2px solid grey;*/
border-radius: 11px;
}
.right {
font-family: cursive;
display: inline-block;
/* border: 2px solid yellow;*/
position: absolute;
right: 34px;
top: 33px;
}
.navbar li {
display: inline-block;
font-size: 18px;
}
.navbar li a {
color: white;
text-decoration: none;
padding: 25px 15px;
}
.navbar li a:hover {
text-decoration: underline;
color: aqua;
}
.btn {
font-family: cursive;
margin: 0px 9px;
color: white;
background-color: black;
padding: 4px 13px;
border: 2px solid grey;
border-radius: 11px;
font-size: 14px;
cursor: pointer;
}
.btn:hover {
background-color: rgb(109, 139, 148);
}
.container {
text-align: center;
font-family: cursive;
color: azure;
border: 3px solid grey;
margin: 80px auto;
padding: 34px 56px;
width: 35%;
border-radius: 12px;
}
.form-group input {
/* text-align: center;*/
font-family: cursive;
display: block;
font-size: 17px;
margin: 10px auto;
padding: 5px;
border: 2px solid black;
border-radius: 12px;
width: 400px;
text-align: center;
}
h1 {
text-align: center;
font-size: 42px;
color: aqua;
}
.form-group_2 {
margin: auto;
padding: 4px;
}
.container button {
width: 400px;
padding-top: 3px;
margin-bottom: auto;
}
/*</style>*/