Subversion Repositories web_pages

Rev

Rev 10 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 randell 1
body {
2
    font-family: Arial, sans-serif;
3
    background-color: #f9f9f9;
4
    padding: 20px;
5
  }
6
  form {
7
    background: #fff;
8
    padding: 20px;
9
    border-radius: 8px;
10
    max-width: 600px;
11
    margin: auto;
12
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
13
  }
14
  input, textarea, select {
15
    width: 100%;
16
    padding: 8px;
17
    margin-bottom: 15px;
18
    border: 1px solid #ccc;
19
    border-radius: 4px;
20
  }
21
  input[type="checkbox"]{
22
    width: auto;
23
    margin-right: 10px;
24
  }
25
  label {
26
    font-weight: bold;
27
  }
28
  button {
29
    background-color: #007BFF;
30
    color: white;
31
    padding: 10px 15px;
32
    border: none;
33
    border-radius: 4px;
34
    cursor: pointer;
35
  }
36
  button:hover {
37
    background-color: #0056b3;
38
  }
39
    .success-message {
40
        color: green;
41
        font-weight: bold;
42
        margin-bottom: 20px;
43
    }
44
    .error-message {
45
        color: red;
46
        font-weight: bold;
47
        margin-bottom: 20px;
48
    }
49